如何发送包含反应的消息? 我希望用户能够使用!Test 触发命令,并且Bot会以test和红十字会作为回复。
我的代码:
@client.command()
async def Test(ctx, message = "test"):
Message = await ctx.send(apme, "?️?")
await client.add_reaction(Message, emoji="redCross:423541694600970243")```
答案 0 :(得分:0)
我很多时候喜欢捷径,所以我个人会这样写:
import discord
from discord.ext.commands import Bot
from discord.ext import commands
Client = discord.Client() # Initialise Client
client = commands.Bot(command_prefix = "?") # Initialise client bot
@client.event
async def on_ready():
print("ready")
@client.event
async def on_message(message):
if message.content == "!test" in message.content:
await message.channel.send("test :x:")
client.run("input token")
叫我懒,但是它可以XD。
答案 1 :(得分:0)