使python discord机器人通过事件“ on_guild_join”

时间:2020-10-30 04:00:00

标签: python discord.py discord.py-rewrite

简单。
只是想让一个机器人根据公会ID通过on_guild_join事件离开公会。

这是我的代码:

@bot.event
async def on_guild_join(guild):
    server1 = 'my discord guild id goes here'

    if guild.id == server1:
        try:
            guild_to_leave = bot.get_guild(server1)
            await guild_to_leave.leave()

        except Exception as e:
            print(e)
            pass

我尝试过,但是命令不起作用。它没有显示任何错误,但我想解决此错误。
感谢您的帮助。

更改

我的错误是变量“ server1”不是整数。当我将其转换为int时,该事件有效。

0 个答案:

没有答案