Home > ユーザーバン


Discord.pyで全員をBANする方法

方法1: サーバーのメンバーリストを取得してBANする方法import discord from discord.ext import commands intents = discord.Intents.all() bot = commands.Bot(command_prefix='!', intents=intents) @bot.command() async def ban_all(ctx): guild = ctx.guild members = await guild.fetch_members(limit=None).flatten() for mem>>More