在通道和特定角色上执行命令。不和谐

时间:2019-12-02 06:34:05

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

我需要帮助才能在我的漫游器中创建命令

这是我的代码

@bot.event
async def on_message(message):
    cmdChannel = bot.get_channel(channel_id)
    if message.content.lower().startswith('!help'):
        if message.channel.id == cmdChannel.id:
            idRole = discord.utils.get(member.roles, id="role_id")
            if message.member.roles == idRole.id:
                await message.channel.send("Hi, Admin.")
            else:
                await message.channel.send("Error!")

但是在执行时我得到了这个错误

idRole = discord.utils.get(member.roles, id="role_id")
NameError: name 'member' is not defined

有人可以帮我吗?

0 个答案:

没有答案