mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
Adding new commands to help function
This commit is contained in:
parent
5b3b530a38
commit
dd55c56b88
@ -10,7 +10,7 @@ class Control(commands.Cog):
|
|||||||
def __init__(self, bot):
|
def __init__(self, bot):
|
||||||
self.__bot = bot
|
self.__bot = bot
|
||||||
self.__comandos = {
|
self.__comandos = {
|
||||||
'MUSIC': ['this', 'resume', 'pause', 'loop', 'stop', 'skip', 'play', 'queue', 'clear'],
|
'MUSIC': ['this', 'resume', 'pause', 'loop', 'stop', 'skip', 'play', 'queue', 'clear', 'np'],
|
||||||
'RANDOM': ['escolha', 'cara', 'random'],
|
'RANDOM': ['escolha', 'cara', 'random'],
|
||||||
'HELP': ['help'],
|
'HELP': ['help'],
|
||||||
'OTHERS': ['cetus', 'frase']
|
'OTHERS': ['cetus', 'frase']
|
||||||
@ -27,13 +27,13 @@ class Control(commands.Cog):
|
|||||||
@commands.Cog.listener()
|
@commands.Cog.listener()
|
||||||
async def on_ready(self):
|
async def on_ready(self):
|
||||||
print(config.STARTUP_MESSAGE)
|
print(config.STARTUP_MESSAGE)
|
||||||
await self.__bot.change_presence(status=discord.Status.online, activity=discord.Game(name=f"Vulkan | type {config.BOT_PREFIX}help"))
|
await self.__bot.change_presence(status=discord.Status.online, activity=discord.Game(name=f"Vulkan | {config.BOT_PREFIX}help"))
|
||||||
print(config.STARTUP_COMPLETE_MESSAGE)
|
print(config.STARTUP_COMPLETE_MESSAGE)
|
||||||
|
|
||||||
@commands.Cog.listener()
|
@commands.Cog.listener()
|
||||||
async def on_command_error(self, ctx, error):
|
async def on_command_error(self, ctx, error):
|
||||||
if isinstance(error, MissingRequiredArgument):
|
if isinstance(error, MissingRequiredArgument):
|
||||||
await ctx.channel.send(f'Falta argumentos. Digite {config.BOT_PREFIX}help para ver os comandos')
|
await ctx.channel.send(f'Falta argumentos. Digite {config.BOT_PREFIX}help para ver todos os comandos\n\nOu tente {config.BOT_PREFIX}command help para mais informações')
|
||||||
elif isinstance(error, CommandNotFound):
|
elif isinstance(error, CommandNotFound):
|
||||||
await ctx.channel.send(f'O comando não existe')
|
await ctx.channel.send(f'O comando não existe')
|
||||||
else:
|
else:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user