Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dashroshan/clashverse
⚔️ Clash of Clans discord bot to get clan and war stats, zapquake combos, next trader item occurrences, and more with in-game like image based responses.
https://github.com/dashroshan/clashverse
clash clash-of-clans coc discord-bot
Last synced: 8 days ago
JSON representation
⚔️ Clash of Clans discord bot to get clan and war stats, zapquake combos, next trader item occurrences, and more with in-game like image based responses.
- Host: GitHub
- URL: https://github.com/dashroshan/clashverse
- Owner: dashroshan
- Created: 2022-10-28T15:32:00.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-21T19:23:09.000Z (over 1 year ago)
- Last Synced: 2024-10-27T19:34:06.559Z (about 2 months ago)
- Topics: clash, clash-of-clans, coc, discord-bot
- Language: Python
- Homepage: https://clashverse.dashroshan.com
- Size: 7.08 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ClashVerse
## To-do
- [ ] Update to latest `coc.py`
- [ ] Update to latest `discord.py` and remove dependance from `discord_py_slash_command`
- [ ] Rework database to use `motor` instead of `pymongo`
- [ ] Separate database operations, processing, and image generation.
- [ ] Add support for TH15 in clan and war commands.
- [ ] Add comments to the code 🙈## secret.py
This file with the below contents need to be created and placed in the same place as the bot.py file.
```py
extensions = [ "cogs.general", "cogs.zapquake", "cogs.clan", "cogs.server" ]
mongodb_url = "monogo_db_url_here"
discord_token = "bot_discord_token_here"
testguild = [your_test_server_id]
statguild = [your_test_server_id]
coc_email = "coc_api_site_login_email"
coc_password = "coc_api_site_login_password"
coc_keycount = 1
```