-
Notifications
You must be signed in to change notification settings - Fork 11
Modules
Shaun edited this page Sep 25, 2020
·
8 revisions
"Modules" refers to groups of commands that are used on the bot that share common functionality. Each module serves a different purpose and may require various preconditions to be met before the user can use the command.
Each command within each module can be described by its various properties. For example, a generic .say command can be detailed as follows:
Command: say <message>
Aliases: None
Preconditions: Administrator
Parameters: <message> - The message the user wishes the bot to say;
Description: Make the bot take the message provided by the user, and repeat it in an embed format.
Expected Result: Bot takes the message the user provides, creates an embed, and repeats said message within an embed.