我如何制作一个机器人,如果您做出反应,它将赋予您python的作用?

所以,我一直在这样做:

from discord.ext import commands
from discord.utils import get


client = commands.Bot(command_prefix='><')


@client.event
async def on_ready():
    print("I am ready Winson or not Winson :D")

@client.event
async def on_member_join(member):
    channel = client.get_channel(744440768667844698)
    message = await channel.send(f"Welcome to HaveNoFaith {member},happy to be friends with you")

@client.command()
async def ping(ctx):
     await ctx.send(f"Your Ping is {round(client.latency *1000)}ms")

@client.command()
async def Help(ctx2):
    await ctx2.send("Hi,Im WelcomeBot v1.0...\n\nPrefix: ><\n\nCommands: ping\n          help")

#,然后我尝试在消息“ Welcome etc”中执行类似操作,如果他们对该消息中的“检查反应”做出反应,那么他们将在不和谐的服务器中扮演角色...

相关文章

功能概要:(目前已实现功能)公共展示部分:1.网站首页展示...
大体上把Python中的数据类型分为如下几类: Number(数字) ...
开发之前第一步,就是构造整个的项目结构。这就好比作一幅画...
源码编译方式安装Apache首先下载Apache源码压缩包,地址为ht...
前面说完了此项目的创建及数据模型设计的过程。如果未看过,...
python中常用的写爬虫的库有urllib2、requests,对于大多数比...