- Python 100%
| .gitignore | Adding basic files | |
| bot.py | Applying black style to the thing. | |
| LICENSE | Adding LICENSE | |
| README.md | Adding issue section | |
Auto-bumper for Disboard
A user-bot (or self-bot) that can automatically bump servers 😄. Undetactable by the Disboard bot.
Make sure to ONLY use commands in private messages and never talk about the bot in the server, you can get banned from disboard and/or from Discord itself! Proceed at your own risks.
Set it up
- Install Python3 and Pip3, example:
sudo apt install python3 python3-pip
- Install Discord.py
pip3 install discord
- Download this repo
git clone https://codeberg.org/SnowCode/auto-bump
cd auto-bump
-
Get the channel ID by right cliking on the channel where you want to send the bump commands, then click on "Copy ID".
-
Login on Discord in Firefox, press
CTRL+SHIFT+I, then selectStorage, thenLocal Storage, then search for "token" in the search bar, then pressCTRL+SHIFT+M, finally, copy the token value. -
Create a file called
config.pywith the following template:
channel_id = 2345678 # Your channel id here
user_token = "aezoehzaidbzauihbuehizauieyeizae" # Your user token here
- Save the file and start the bot
python3 bot.py
Usage
Once you ran the command, the server can be automatically bumped. There are two special commands though
| Command | Meaning |
|---|---|
!pause |
Pause the bumping |
!continue |
Continue the bumping after a pause and tells you when the next bump will happen |
Troubleshooting
"Improper token"
This error message means you may changed your password or provided the wrong token to the configuration file. When you change your password or revoke your token, you need to start the install again.
"No module named 'discord'"
See in the installation, make sure you used pip3. If pip3 doesn't work, maybe try pip install discord.
"No module named 'asyncio'"
This module should be installed by default, but if it's not, you can install it by running;
pip3 install asyncio
And if the command above fails:
pip install asyncio
The bot is out of sync
If this happen, you may see in the !continue that the time doesn't change. Or the log says "Next bump in -1 day". In this case, try to manually bump and try again.
Other issue / idea
Please open an issue if you have any problem. Have fun!