我需要帮助才能在我的漫游器中创建命令
这是我的代码
@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
有人可以帮我吗?