当命令运行时,Bot应该向两个人发送消息

时间:2017-09-04 14:08:04

标签: python bots discord

我正在制作一部不和谐机器人。我希望自己和我的朋友制作机器人信息。我确实有消息部分,它回复执行命令的人,但是我不知道如何让它成为消息的人。这是我到目前为止命令的代码。我在其他语言中看到过这个问题的多个版本,但我不知道如何将它们转换为python。
有什么帮助吗?

@UGH.command()
async def support():
   message = 'A Staff member will be with you shortly, please do not run this command more than once.'
   await UGH.say(message)

1 个答案:

答案 0 :(得分:0)

您可以通过以下方式向人们发送消息:

private_channel = await client.start_private_message(message.author)
await client.send_message(private_channel, "Message")