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.
25 lines
990 B
25 lines
990 B
import discord
|
|
|
|
class Extension:
|
|
core = None
|
|
def __init__(self, core):
|
|
self.core = 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
|
|
):
|
|
await interaction.response.defer(thinking=True)
|
|
await interaction.followup.send(f'{await self.__call__(profile, reason, minutes, interaction.user)}', ephemeral=False)
|
|
try:
|
|
await self.core.loaded_extensions["ban_roles"].updater()
|
|
except:
|
|
print("Cannot update ban roles on main server")
|
|
|
|
async def __call__(self, profile, reason, minutes, discord_user):
|
|
steam64 = await self.core.GetSteam64OfDiscord(discord_user)
|
|
player = await self.core.GetPlayer(profile, steam64, False)
|
|
return await player.ban(reason, minutes)
|