我该如何创建一个bot,该bot会以python身份加入刚刚加入服务器的DM用户。因此,如果用户要加入服务器,他们将从我的帐户中收到带有消息的DM。
答案 0 :(得分:1)
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='?', description='Greeting Bot')
@bot.event
async def on_member_join(member):
await bot.send_message(member, 'Hello! Welcome to the server!')
bot.run('token')