如何制作Discord DM机器人?

时间:2018-07-31 15:10:04

标签: python python-3.x discord.py

我该如何创建一个bot,该bot会以python身份加入刚刚加入服务器的DM用户。因此,如果用户要加入服务器,他们将从我的帐户中收到带有消息的DM。

1 个答案:

答案 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')