我正在尝试制作一个机器人,当输入命令时它会检测用户活动。我编写了一些代码,但我得到的机器人响应不是我想要的。这是我的代码:
from discord import Member
from discord.ext import commands
bot = commands.Bot(command_prefix='!')
@bot.command()
async def status(ctx):
await ctx.send(Member.activities)
bot.run('token')
这就是我得到的回应:
<“成员”对象的成员“活动”>
我怎样才能解决这个问题?有人会帮助我吗?
倚天杖
相关分类