Discord.py角色特定命令

时间:2018-03-31 19:19:49

标签: python python-3.x discord discord.py

我遇到了特定于角色的命令的问题。例如,我只希望某个角色拥有像ban和kick这样的命令。我用Google搜索并搜索了youtube,但没有出现。

编辑:我发现有人有类似的问题,有人回复:

@bot.command()
@commands.has_role('RoleName')
async def command_name():

所以我试着写:

@bot.command()
@commands.has_role('Admin')
async def kick():
    await bot.kick(userName)

但那没用。

0 个答案:

没有答案