adds Readme and increase tempbot

This commit is contained in:
Seraphim Strub 2023-01-26 01:04:16 +01:00
parent 3d13231cb9
commit 77a9bb2284
2 changed files with 17 additions and 1 deletions

16
README.md Normal file
View 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`

View file

@ -61,7 +61,7 @@ func main() {
// delete messages older then x min in channel // delete messages older then x min in channel
ticker := time.NewTicker(1 * time.Minute) ticker := time.NewTicker(5 * time.Minute)
quit := make(chan struct{}) quit := make(chan struct{})
go func() { go func() {
for { for {