我的意思的例子(“+slap @examplename”)机器人然后会在聊天“@me slapped @examplename”我似乎无法让它工作。
import discord
from discord.ext.commands import Bot
bot = Bot(command_prefix='+')
bot.command()
async def slap(self, member : discord.Member):
"""<member>: Be careful with this one."""
await self.bot.say("*slaps {0} around a bit with a large, girthy trout*".format(member))
@bot.event
async def on_ready():
print ("------------------------------------")
print ("Bot Name: " + bot.user.name)
print ("Bot ID: " + bot.user.id)
print ("Discord Version: " + discord.__version__)
print ("------------------------------------")
await bot.change_presence(game=discord.Game(name='Created By Pluto'))
bot.run('')