You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
slash commands allow for more easy to use interactions with the bot
pressing / will bring up a context menu with commands the bot can do
Things to do:
set up cogs
move new_chapter to cogs and make a hybrid commnand
create a delete_chapter that reverse the new_chapter command
cog in the framework discord.py is like an extension basically a folder called cog and within the folder you can have different "extensions" that can be loaded into the bot
for all intent and purposes it's a way to break apart the code out of a single main file
The text was updated successfully, but these errors were encountered:
slash commands allow for more easy to use interactions with the bot
pressing
/
will bring up a context menu with commands the bot can doThings to do:
new_chapter
to cogs and make a hybrid commnanddelete_chapter
that reverse thenew_chapter
commandcog
in the frameworkdiscord.py
is like an extension basically a folder calledcog
and within the folder you can have different "extensions" that can be loaded into the botfor all intent and purposes it's a way to break apart the code out of a single
main
fileThe text was updated successfully, but these errors were encountered: