Discord.py - 如何制作特定于角色的命令?

Discord.py - How to make a role specific command?(Discord.py - 如何制作特定于角色的命令?)
本文介绍了Discord.py - 如何制作特定于角色的命令?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我需要制定一个只能由具有特定角色的人执行的命令.我在 google 和 youtube 上四处搜索以找到答案,但一无所获

I need to make a command that can only be executed by someone that has a certain role. I searched around on google and youtube to find a answer but came up with nothing

推荐答案

您可以在命令上添加一个装饰器,以将其限制为仅具有特定角色或权限的成员.它的文档是 这里.它看起来像这样:

You can add a decorator on the command to restrict it to only members with specific roles or permissions. The documentation for it is here. It would look like this:

@bot.command()
@commands.has_role('RoleName')
async def command_name():

请记住,您传递的 RoleName 字符串区分大小写.

Keep in mind that the RoleName string you pass is case sensitive.

这篇关于Discord.py - 如何制作特定于角色的命令?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do I make a list of all members in a discord server using discord.py?(如何使用 discord.py 列出不和谐服务器中的所有成员?)
how to change discord.py bot activity(如何更改 discord.py 机器人活动)
Issues with getting VoiceChannel.members and Guild.members to return a full list(让 VoiceChannel.members 和 Guild.members 返回完整列表的问题)
Add button components to a message (discord.py)(将按钮组件添加到消息(discord.py))
on_message() and @bot.command issue(on_message() 和@bot.command 问题)
How to edit a message in discord.py(如何在 discord.py 中编辑消息)