每当机器人被邀请到服务器时,我都想发送一条消息。然后它应该写如下内容:“你好,这是我的不和谐机器人”
到目前为止,我有这段代码,它不会产生错误,但也不会发送消息。
@bot.event
async def on_server_join(ctx):
for guild in bot.guilds:
for channel in guild.text_channels:
if channel.permissions_for(guild.me).say:
await ctx.message.channel.send('Hello! \n')
break