diff --git a/README.md b/README.md new file mode 100644 index 0000000..0c2e2f2 --- /dev/null +++ b/README.md @@ -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` \ No newline at end of file diff --git a/cmd/tempbot/main.go b/cmd/tempbot/main.go index 8085c36..d18b639 100644 --- a/cmd/tempbot/main.go +++ b/cmd/tempbot/main.go @@ -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 {