adds Readme and increase tempbot
This commit is contained in:
parent
3d13231cb9
commit
77a9bb2284
2 changed files with 17 additions and 1 deletions
16
README.md
Normal file
16
README.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# some discord bots
|
||||
|
||||
- [tempbot](./cmd/tempbot) deletes messages after 30 min, checks every 5 min
|
||||
- needs env `disgo_token` and `disgo_guild_id`
|
||||
- and a text channel called `⌛-temp`
|
||||
- [vcbot](./cmd/vcbot) automatically creates and deletes channels and logs join/leave
|
||||
- needs env `disgo_token` and `disgo_guild_id`
|
||||
- and a text channel called `📋-voice` and a category called `🔊-talk`
|
||||
- [welcomebot](./cmd/welcomebot)
|
||||
- needs env `disgo_token` and `disgo_guild_id`
|
||||
- and the following text channels `🔨-rules`, `❕-info` and `👋-welcome`
|
||||
- and a group called `Apple` and `Apple Core`
|
||||
- the bot group needs to be above `Apple`
|
||||
- [funbot](./cmd/funbot)
|
||||
- needs env `disgo_token`, `disgo_guild_id` and `disgo_imgur`
|
||||
- TODO: make global and remove `disgo_guild_id`
|
|
@ -61,7 +61,7 @@ func main() {
|
|||
|
||||
// delete messages older then x min in channel
|
||||
|
||||
ticker := time.NewTicker(1 * time.Minute)
|
||||
ticker := time.NewTicker(5 * time.Minute)
|
||||
quit := make(chan struct{})
|
||||
go func() {
|
||||
for {
|
||||
|
|
Loading…
Reference in a new issue