Answers for "discord.py cool commands"

0

how to add multiple arguments in discord commands rewrite

@bot.command()
async def args(ctx, arg1, arg2):
    await bot.say('You sent {} and {}'.format(arg1, arg2))
Posted by: Guest on July-07-2020
0

get all commands discord.py

for command in self.bot.commands:
    print(command)
#OR
for command in bot.commands:
	print(command)
Posted by: Guest on January-22-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language