print("dsdsdd")
import discord
import time
from discord.ext import commands
from discord.utils import get
TOKEN = "..."
ROLE = "Rekrutant"
bot = commands.Bot(command_prefix = "/")
@bot.event
async def on_ready():
print("Zalogowano: " + bot.user.name)
@bot.command()
async def setup(ctx, user: discord.Member = None):
ADMIN_ROLE = discord.utils.get(ctx.guild.roles, name="Admin")
if (ADMIN_ROLE in ctx.author.roles):
await user.add_roles("Rozmowy+")
else:
await ctx.send("Nie masz uprawnien, aby uzywac komendy")
bot.run(TOKEN)
我在获取用户表单消息时遇到问题。
我遇到了一个错误: 等待请求(guild_id,user_id,role.id,原因=原因) AttributeError: 'str' 对象没有属性 'id'
我不知道为什么它不起作用。
答案 0 :(得分:0)
这是因为您将一个字符串放入 add_roles 函数中,而该函数实际上需要一个角色对象。试试:
await ctx.author.add_roles(discord.utils.get(ctx.guild.roles,name="Rozmowy+"))
这个新函数将字符串转换为角色对象,这正是原始函数所寻找的。此外,我将用户更改为 ctx.author,因为这是唯一对我有用的用户对象。如果您需要任何说明,请在下方评论中问我。