A Discord bot for helping change roles in JMU Grad Discord
- Python 3.7 or greater
- Git
- Copy secret_example.py and make a new file called secret.py with your discord bot token
- Run bot.py
For an example of a set of created commands, see commands in lazybot/commands/MiscFun.py.
To begin to add a command, add a new or edit an existing class (like MiscFun) inheriting from discord.ext.commands.Cog, and put commands inside it. The doc comments for your function (command) are the command's help message, and the name of the your function is by default the name of the command (see docs linked in Rapptz/discord.py for more info).