当有人使用“pls rob”并在其后提及某人时,我该如何禁止机器人?

时间:2021-07-01 05:09:15

标签: python discord.py

if message.content.lower() == 'pls rob':
  await message.delete()
  await message.author.send('Oof you got banned.')
  await message.author.ban(reason="Robbing")

是我当前的代码,当其他人提到“pls rob”/“pls rob @Someone”之外的人时,我不确定如何使其工作

1 个答案:

答案 0 :(得分:0)

试试这个:

if message.content.lower().startswith('pls rob'): <--
    await message.delete()
    await message.author.send('Oof you got banned.')
    await message.author.ban(reason="Robbing")