我想表达一个很酷的广播命令。该命令将是这样的。如果管理员DM使用$ bc向该bot发出通知,则该bot会将消息发送到#broadcast,它可以从DM和服务器中读取信息。我尝试了此命令,但是它没有按照我的想法工作。
@bot.command(pass_context=True)
async def bc(args, message):
channel = server.get_channel("474316889435275264")
await bot.send_message(channel, args)
它无法读取任何channel = server.get_channel("474316889435275264")
,所以我知道代码是错误的,但是很好。
P.S。 =就像say命令一样,但是它将发送到指定的频道。