mirror of
https://github.com/neoarz/Syntrel.git
synced 2025-12-25 19:50:12 +01:00
51 lines
1.9 KiB
Python
51 lines
1.9 KiB
Python
import discord
|
|
from discord import app_commands
|
|
from discord.ext import commands
|
|
from discord.ext.commands import Context
|
|
|
|
|
|
def hackban_command():
|
|
@commands.hybrid_command(
|
|
name="hackban",
|
|
description="Bans a user without the user having to be in the server.",
|
|
)
|
|
@commands.has_permissions(ban_members=True)
|
|
@commands.bot_has_permissions(ban_members=True)
|
|
@app_commands.describe(
|
|
user_id="The user ID that should be banned.",
|
|
reason="The reason why the user should be banned.",
|
|
)
|
|
async def hackban(self, context, user_id: str, *, reason: str = "Not specified"):
|
|
"""
|
|
Bans a user without the user having to be in the server.
|
|
|
|
:param context: The hybrid command context.
|
|
:param user_id: The ID of the user that should be banned.
|
|
:param reason: The reason for the ban. Default is "Not specified".
|
|
"""
|
|
try:
|
|
await self.bot.http.ban(user_id, context.guild.id, reason=reason)
|
|
user = self.bot.get_user(int(user_id)) or await self.bot.fetch_user(
|
|
int(user_id)
|
|
)
|
|
embed = discord.Embed(
|
|
title="Ban",
|
|
description=f"**{user}** (ID: {user_id}) was banned by **{context.author}**!",
|
|
color=0x7289DA,
|
|
).set_author(
|
|
name="Moderation", icon_url="https://yes.nighty.works/raw/CPKHQd.png"
|
|
)
|
|
embed.add_field(name="Reason:", value=reason)
|
|
await context.send(embed=embed)
|
|
except Exception:
|
|
embed = discord.Embed(
|
|
title="Error!",
|
|
description="An error occurred while trying to ban the user. Make sure ID is an existing ID that belongs to a user.",
|
|
color=0xE02B2B,
|
|
).set_author(
|
|
name="Moderation", icon_url="https://yes.nighty.works/raw/CPKHQd.png"
|
|
)
|
|
await context.send(embed=embed)
|
|
|
|
return hackban
|