如何在bot启动时向其所在的每个服务器发送消息?

时间:2018-01-03 00:59:29

标签: discord.py

所以我想向我的机器人所在的所有服务器发送通知。我在github上找到了这个,但它需要一个服务器ID和一个通道ID。

@bot.event
async def on_ready():
    server = bot.get_server("server id")
    await bot.send_message(bot.get_channel("channel id"), "Test")

我也发现了一个类似的问题,但它在discord.js中。它用默认频道说了些什么,但当我尝试时:

@bot.event
async def on_ready():
    await bot.send_message(discord.Server.default_channel, "Hello everyone")

它给了我错误: 目的地必须是Channel,PrivateChannel,User或Object

1 个答案:

答案 0 :(得分:3)

首先回答您关于default_channel的问题:自2017年6月左右起,discord不再定义"默认"通道,因此,服务器的default_channel元素通常设置为None。

其次,通过说discord.Server.default_channel,您要求提供类定义的元素,而不是实际的通道。要获得实际频道,您需要一个服务器实例。

现在回答原始问题,即向每个频道发送消息,您需要在服务器中找到一个可以实际发布消息的频道。

@bot.event
async def on_ready():
    for server in bot.servers: 
        # Spin through every server
        for channel in server.channels: 
            # Channels on the server
            if channel.permissions_for(server.me).send_messages:
                await bot.send_message(channel, "...")
                # So that we don't send to every channel:
                break
相关问题