update readme and add future bots

This commit is contained in:
Seraphim Strub 2023-01-26 01:28:18 +01:00
parent 979fc2bd7d
commit a3ce56e795
3 changed files with 40 additions and 16 deletions

View file

@ -1,16 +1,24 @@
# some discord bots # some discord bots
- [tempbot](./cmd/tempbot) deletes messages after 30 min, checks every 5 min - [tempbot](./cmd/tempbot/main.go) deletes messages after 30 min, checks every 5 min
- needs env `disgo_token` and `disgo_guild_id` - needs env `disgo_token` and `disgo_guild_id`
- and a text channel called `⌛-temp` - and a text channel called `⌛-temp`
- [vcbot](./cmd/vcbot) automatically creates and deletes channels and logs join/leave - [vcbot](./cmd/vcbot/main.go) automatically creates and deletes channels and logs join/leave
- needs env `disgo_token` and `disgo_guild_id` - needs env `disgo_token` and `disgo_guild_id`
- and a text channel called `📋-voice` and a category called `🔊-talk` - and a text channel called `📋-voice` and a category called `🔊-talk`
- [welcomebot](./cmd/welcomebot) - [welcomebot](./cmd/welcomebot/main.go) sends welcome messages in `👋-welcome` and allows approval of users by group
- needs env `disgo_token` and `disgo_guild_id` - needs env `disgo_token` and `disgo_guild_id`
- and the following text channels `🔨-rules`, `❕-info` and `👋-welcome` - and the following text channels `🔨-rules`, `❕-info` and `👋-welcome`
- and a group called `Apple` and `Apple Core` - and a group called `Apple` and `Apple Core`
- the bot group needs to be above `Apple` - the bot group needs to be above `Apple`
- [funbot](./cmd/funbot) - [funbot](./cmd/funbot/main.go) sends funny and cute pictures
- needs env `disgo_token`, `disgo_guild_id` and `disgo_imgur` - needs env `disgo_token`, `disgo_guild_id` and `disgo_imgur`
- TODO: make global and remove `disgo_guild_id` - TODO: make global and remove `disgo_guild_id`
- TODO: add other apis
- [dealsbot](./cmd/dealsbot/main.go) send deals from steam, epic and more
- needs env `disgo_token`, `disgo_guild_id`
- TODO: implement https://dev.rievo.net/sst/feed-python
- TODO: additionally include https://gx-proxy.operacdn.com/content/free-games?_limit=300&_sort=order%3AASC
- [msgbot](./cmd/msgbot/main.go) send messages which can be edited by other admins
- needs env `disgo_token`
- TODO: implement

9
cmd/dealsbot/main.go Normal file
View file

@ -0,0 +1,9 @@
package main
func main() {
// translate this to go: https://dev.rievo.net/sst/feed-python
// query different sources store to db
// try to incorporate operagx api
// send messages to discord
}

7
cmd/msgbot/main.go Normal file
View file

@ -0,0 +1,7 @@
package main
func main() {
// command to send admin messages (for example https://discord.com/channels/425773377349877769/704611918089814076/936598872636129380)
// as embed or just message
// possibility to edit
}