所以我做了一个服务器所需要的机器人,我想添加一个名为
的命令!dm @(用户)(消息)
请帮助
答案 0 :(得分:0)
假设您使用的是discord.py 1.x和discord.ext.commands:
import discord
from discord.ext import commands
... # Bot definition if this is the main file
@bot.command()
async def dm(ctx, user: discord.User, *, message):
await user.send(message)
如果您的Bot实例变量的名称不同或在cog中,则需要对此稍作修改。
相关文档: