import discord
import asyncio
client = discord.Client()
@client.event
async def on_ready():
print ("I’m Now Online")
@client.event
async def on_message(message):
if message.author == client.user:
return
elif message.content.startswith("deletethis"):
我很想知道当消息的作者发送上述命令时,我能够添加到这个以删除上面的命令。 愿有人帮忙创造吗?我已经通过大脑尝试了自己,并没有在网上找到任何东西,所以我正在寻找一些帮助。