gpt4 book ai didi

python-3.x - Discord.py 禁止不在我服务器中的成员

转载 作者:行者123 更新时间:2023-12-04 09:08:48 28 4
gpt4 key购买 nike

我与许多合作服务器合作共享反突袭禁令。通常我会得到一个 user_ids 列表和一个禁止的原因。然后使用 dyno bot 禁止他们,因为 dyno bot 可以禁止不在您服务器中的成员。但是现在我正在向我的机器人添加一个禁止日志数据库,我希望能够禁止不在我的服务器中的成员。

@client.command()
@commands.has_permissions(ban_members=True)
async def ban(ctx, member : discord.Member, *, reason=None):

new_color = stuff
hex_color = stuff

if reason == None:

embed = discord.Embed(title=f"Woah {ctx.author.name}, Make sure you provide a reason!", color=int(hex_color, 16))

await ctx.send(embed=embed)

else:

dmban=(f"You have been banned from {ctx.guild.name} for '{reason}'.")
embed=discord.Embed(title=f"{member.name} has been banned from {ctx.guild.name} for {reason}", color=int(hex_color, 16))
embed.add_field(name=f":newspaper: {reason}", value=f"User id: {member.id}", inline=True)
embed.add_field(name="User joined:", value=member.joined_at, inline=True)
inlul = client.get_channel(channel_id)

now = datetime.now()
formatted_date = now.strftime('%Y-%m-%d %H:%M:%S')
db = sqlite3.connect('main.sqlite')
cursor = db.cursor()
sql = ("INSERT INTO banlog(mod_name, mod_id, reason, datetime, ban_name, ban_id) VALUES(?,?,?,?,?,?)")
val = (ctx.author.name, ctx.author.id, reason, formatted_date, member.name, member.id)

cursor.execute(sql, val)
db.commit()
cursor.close()
db.close()


await member.send(dmban)
await guild.ban(discord.Object(id=member_id), reason=reason)
await inlul.send(embed=embed)
我尝试使用 await guild.ban(discord.Object(id=member_id)我在 github 页面上找到的关于使用它通过 user_id 禁止的页面。但对我来说,它不会禁止用户,但会将禁止添加到数据库中。我不确定我是否为 member_id 制作了一个 var。

最佳答案

尝试这样做:
更改命令以将用户 ID 作为参数,然后使用它来定位和禁止用户。

user = await bot.fetch_user(int(args))
await ctx.guild.ban(user)

关于python-3.x - Discord.py 禁止不在我服务器中的成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63400349/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com