Audio, TTS

This commit is contained in:
James H
2023-04-08 00:35:31 +01:00
parent 0f3416c11b
commit 2d5a58f996
10 changed files with 389 additions and 62 deletions

View File

@@ -5,15 +5,15 @@ class Command():
# Useful boilerplate
# You should overwrite these values!
self.name = "command" # Lower case and no spaces please :)
self.display_name = "Command"
self.description = "command description"
self.triggers = ["command"]
self.name = 'command' # No spaces please
self.display_name = 'Command'
self.description = 'command description'
self.triggers = ['command']
self.hidden = False
# {} will be .formatted to be the command prefix
self.usage = "{}command"
self.usage = '{}command'
async def run(self, bot: discord.Client, config: dict, message: discord.message, content: str):
# Implement this!