Discord.py AttributeError:“用户”对象没有属性“公会”

2024-10-03 00:31:09 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在开发一个定制的discord机器人,主要是为了好玩。我从另一台名为Kurisu的服务器上发现了另一个discord bot,它是完全定制和开源的。这是github:https://github.com/nh-server/Kurisu。在mod.py(https://github.com/nh-server/Kurisu/blob/port/cogs/mod.py)中的第432行,有一个函数基本上为用户提供了无帮助角色(在服务器中,这限制了对特定通道的访问)。我正在尝试做一些类似的事情,没有声音的角色会限制你访问语音频道。我正在使用它们的一些代码,即在函数的参数中。我正在做async def takevoice(ctx,member:FetchMember):作为函数。完整功能如下:

@bot.command(name="takevoice", pass_context=True, description="Removes access to voice channels. Admin only.")
@commands.has_role("Admin") # This must be exactly the name of the appropriate role
async def takevoice(ctx, member: FetchMember):
   role = get(member.guild.roles, name="No-Voice")
   await member.add_roles(role)

我的程序中的其他函数工作得很好,但每当我尝试以另一个用户为目标运行此函数时,它都不工作,并给我一个回溯错误。它的结尾是:AttributeError:“用户”对象没有属性“公会”。我到处寻找答案,但找不到。任何帮助都将不胜感激

谢谢

我的bot的完整代码如下:(我正在使用另外两个文件,它们都可以在Kurisu github的utils文件夹中找到。也就是说,我正在使用checks.py、converts.py、database.py、manager.py和utils.py。我还使用了一个名为keep_alive.py的文件,因为我正在repl.it上运行它。)

import asyncio
import aiohttp
import json
import keep_alive
from discord import Game
from discord.ext.commands import Bot
import datetime
import re
import time
from subprocess import call
import discord
from discord.ext import commands
from checks import is_staff, check_staff_id, check_bot_or_staff
from database import DatabaseCog
from converters import SafeMember, FetchMember
import utils
from discord.ext import commands
from discord.utils import get
TOKEN = ""  # Get at discordapp.com/developers/applications/me
bot=commands.Bot(command_prefix=".")
client=discord.Client()

@bot.command(name="hi")
async def hi(ctx):
    await ctx.channel.send("hello")

@bot.command (name="elsewhere", description="Gives acess to the #elsewhere channel")
async def elsewhere(ctx):
    role = discord.utils.get(ctx.guild.roles, name="Elsewhere")
    user = ctx.message.author
    if role in user.roles:
        await user.remove_roles(role)
    if role not in user.roles:
        await user.add_roles(role)


Tags: 函数namefrompyimportgithubbotutils
2条回答

这是因为一个用户对象不能有一个特定的公会-一个用户意味着不再在公会中的人async def takevoice(ctx, member: FetchMember):更改为async def takevoice(ctx, member: discordMember):,问题将得到解决。这样,您将获得一个成员而不是用户对象,并且将有一个特定的公会。但是(我不知道这是否重要)你不能再对不在公会的人执行此操作

member: FetchMember改为member: discord.Member解决了这个问题。.成员需要大写

相关问题 更多 >