Mind Beaker Bot is a customizable bot built for Discord servers. It is designed to enhance the server experience by providing entertainment, and offering utility features for community management. The bot is flexible and can be extended with various commands and functionalities.
- Fun and Utility Commands: Includes commands for fun interactions, games, and general utilities such as weather updates, reminders, and more.
- Open Source and Extensible: Developers can add new features and commands with ease.
Follow these steps to run the bot on your own server.
- Python 3.x
- Discord API Token (Create one from the Discord Developer Portal)
- Required Python libraries:
discord.py
mysql-connector-python
Install the required libraries by running:
pip install discord.py
pip install mysql-connector-python
- Clone the repository:
git clone https://github.com/5iri/Mind-Breaker-Bot
- Navigate to the project directory:
cd DiscordBot
- Set up the bot by adding your Discord API token to the
config.json
file:
{
"TOKEN": "your-discord-bot-token"
}
- Run the bot:
python3 main.py
Here is a list of commands to use:
1. !tst - starts type speed test
2. !gmlt - gives the list of all games
3. !lb - provides your points with your rank!
4. !commandhelp - helps you give the info we are giving right now!
You can easily add or modify commands by editing the main.py
file and adding new functions.
Contributions to add new features or improve the existing ones are welcome! Follow the steps below to contribute:
- Fork the repository.
- Create a new branch:
git checkout -b feature-branch
- Make your changes and commit them:
git commit -m 'Add new feature'
- Push to the branch:
git push origin feature-branch
- Open a pull request.