我如何发送包含discord.py反应的消息

时间:2019-11-02 15:30:44

标签: python asynchronous discord discord.py

如何发送包含反应的消息? 我希望用户能够使用!Test 触发命令,并且Bot会以test和红十字会作为回复。

我的代码:

@client.command()
async def Test(ctx, message = "test"):

  Message = await ctx.send(apme, "?️‍?")
  await client.add_reaction(Message, emoji="redCross:423541694600970243")```

2 个答案:

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

此方法有效,我不得不进行一些挖掘,发现必须使用unicode作为表情符号

您可以使用相同的概念来制作命令。

crypto-js/cipher-core.js:371