繁体   English   中英

如何使用户在重新进入 discord 服务器时不会删除静音角色?

[英]How can I make it so that the user does not remove mute role when re-entering the discord server?

我为我的 discord.py 机器人创建了静音和取消静音命令,但如果静音成员重新进入,角色将被删除,就好像他没有静音一样。 我怎样才能使当你重新进入服务器时,它的角色仍然在他身上,用于术语 rest?

import discord
from discord.ext import commands
import asyncio

intents = discord.Intents.default()
intents.members = True

bot = commands.Bot(command_prefix="/", intents = intents)

logchannel = bot.get_channel(**********)

@bot.command()
async def mute(ctx, member:discord.Member, time:int):
    muterole = discord.utils.get(ctx.guild.roles, id = *********)
    await member.add_roles(muterole)
    await asyncio.sleep(time * 60)
    if muterole in member.roles:
        await member.remove_roles(muterole)
        return
    else:
        return

@bot.command()
async def unmute(ctx, member:discord.Member):
    muterole = discord.utils.get(ctx.guild.roles, id = ******)
    if muterole in member.roles:
        await member.remove_roles(muterole)
        return
    else:
        return

有一个名为on_member_join的事件,每次成员加入公会时都会触发该事件。 一旦成员加入服务器,您可以使用此事件检查成员当前是否根据您的机器人静音。 您必须以某种方式跟踪当前哪些成员被静音。

以下是此代码可以工作的基本方式。 我假设您可能可以使用列表作为存储用户静音的一种方式。 这没有经过测试,但大致是应该发生的。

import discord
from discord.ext import commands
import asyncio

intents = discord.Intents.default()
intents.members = True

bot = commands.Bot(command_prefix="/", intents = intents)

logchannel = bot.get_channel(**********)

list_of_muted_members = []

@bot.event
async def on_member_join(member):
     if (member in list_of_muted_members): # Once someone joins the server, this event gets triggered and checks to see if the person is currently in the muted list, if they are, the muted role gets given back to them.
          muterole = discord.utils.get(member.guild.roles, name = "muterole")
          await member.add_roles(muterole)

@bot.command()
async def mute(ctx, member:discord.Member, time:int):
    muterole = discord.utils.get(ctx.guild.roles, id = *********)
    await member.add_roles(muterole)
    list_of_muted_members.append(member) # This will add the user to the list because they muted

    await asyncio.sleep(time * 60)
    if muterole in member.roles:
        await member.remove_roles(muterole)
        list_of_muted_members.remove(member) # This will remove the user from the list because they aren't muted anymore
        return
    else:
        return

@bot.command()
async def unmute(ctx, member:discord.Member):
    muterole = discord.utils.get(ctx.guild.roles, id = ******)
    if muterole in member.roles:
        await member.remove_roles(muterole)
        list_of_muted_members.remove(member) # This will remove the user from the list because they aren't muted anymore
        return
    else:
        return

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM