我正在使用discord.py rewrite编写帮助命令,我需要一种方法来遍历bot内部已经拥有的所有命令,有没有办法像bot.get_all_commands一样?
for command in bot.get_all_commands:
print(command)
答案 0 :(得分:1)
bot.commands
在command objects中以set的形式返回所有命令。
答案 1 :(得分:0)
您可以使用 bot.all_commands
返回您之前使用过的所有命令和别名,请参阅 discord.ext.command。