Give and remove roles with a bot, Discord.py(使用机器人 Discord.py 授予和删除角色)
问题描述
如何在 Discord.py 中创建一个机器人,该机器人将分配 role.json
文件中存在的角色,同时使用相同的命令来删除和添加相同的角色.例如,?role
将添加和删除角色,具体取决于用户是否分配了角色.我对如何实现这一点有点困惑.
How do I make a bot in Discord.py that will assign roles present in a role.json
file, while using the same command to both remove and add the same role. For example, ?role <rolename>
will both add and remove a role, depending on if the user has the role assigned. I'm a bit confused on how to achieve this.
我当前的机器人使用 ?roleadd <rolename>
?roleremove <rolename>
.
My current bot uses ?roleadd <rolename>
?roleremove <rolename>
.
推荐答案
我不确定你的 role.json
文件在哪里发挥作用,但我将如何实现这样的命令
I'm not sure where your role.json
file comes into play, but here's how I would implement such a command
@bot.command(name="role")
async def _role(ctx, role: discord.Role):
if role in ctx.author.roles:
await ctx.author.remove_roles(role)
else:
await ctx.author.add_roles(role)
这使用 Role
转换器 自动从 role
对象的名称、id 或提及中解析.
This uses the Role
converter to automatically resolve the role
object from its name, id, or mention.
这篇关于使用机器人 Discord.py 授予和删除角色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用机器人 Discord.py 授予和删除角色


基础教程推荐
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01