作者在Discord.py上

时间:2018-11-14 18:50:08

标签: python bots discord discord.py

我要制造一个不和谐的机器人,当您加入时,它会嵌入一个可嵌入6人的团队。我想做到这一点,所以当它得到6时,会显示人的不和谐名称,而不是“玩家1”。我该怎么办?

elif message.content.startswith('!join'):
global lobby
if (lobby == 5):
  lobby -= 6
  embed = discord.Embed(title="**Teams in the 6 Mans**", description="**Team 1** \nPlayer 1\nPlayer 2\nPlayer 3\n\n**Team 2**\nPlayer 4\nPlayer 5\nPlayer 6", color=0x0000FF)
  await client.send_message(message.channel, embed=embed, )

1 个答案:

答案 0 :(得分:0)

不鼓励使用全局变量。就是说,要访问消息作者的不一致用户名,您想使用message.author.name