You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
645 B

import discord
class Extension:
def __init__(self, core):
@core.tree.command(name = "ban", description = "Забанить игрока на серверах")
@discord.app_commands.describe(profile=core.ANY_INPUT, reason="причина", minutes="время бана | 0 - навсегда")
async def ban_player(
interaction: discord.Interaction,
profile: str,
reason: str,
minutes: int = 0
):
steam64 = await core.GetSteam64OfDiscord(interaction.user)
player = await core.GetPlayer(profile, steam64, False)
return await interaction.response.send_message(f'{await player.ban(reason, minutes)}', ephemeral=False)