mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 11:35:22 +09:00
62 lines
2.8 KiB
Lua
62 lines
2.8 KiB
Lua
local Commands = require 'expcore.commands'
|
|
local Jail = require 'modules.control.jail'
|
|
local format_chat_player_name = ext_require('expcore.common','format_chat_player_name')
|
|
require 'config.expcore-commands.parse_roles'
|
|
|
|
Commands.new_command('jail','Puts a player into jail and removes all other roles.')
|
|
:add_param('player',false,'player-role')
|
|
:add_param('reason',true)
|
|
:enable_auto_concat()
|
|
:register(function(player,action_player,reason,raw)
|
|
reason = reason or 'Non Given.'
|
|
local action_player_name_color = format_chat_player_name(action_player)
|
|
local by_player_name_color = format_chat_player_name(player)
|
|
if Jail.jail_player(action_player,player.name,reason) then
|
|
game.print{'expcom-jail.give',action_player_name_color,by_player_name_color,reason}
|
|
else
|
|
return Commands.error{'expcom-jail.already-jailed',action_player_name_color}
|
|
end
|
|
end)
|
|
|
|
Commands.new_command('unjail','Removes a player from jail.')
|
|
:add_param('player',false,'player-role')
|
|
:add_alias('clear-jail','remove-jail')
|
|
:enable_auto_concat()
|
|
:register(function(player,action_player,raw)
|
|
local action_player_name_color = format_chat_player_name(action_player)
|
|
local by_player_name_color = format_chat_player_name(player)
|
|
if Jail.unjail_player(action_player,player.name) then
|
|
game.print{'expcom-jail.remove',action_player_name_color,by_player_name_color}
|
|
else
|
|
return Commands.error{'expcom-jail.not-jailed',action_player_name_color}
|
|
end
|
|
end)
|
|
|
|
Commands.new_command('temp-ban','Temp bans a player until the next reset; this requires a reason; this will clear the players inventory.')
|
|
:add_param('player',false,'player-role')
|
|
:add_param('reason',false)
|
|
:enable_auto_concat()
|
|
:register(function(player,action_player,reason,raw)
|
|
local action_player_name_color = format_chat_player_name(action_player)
|
|
local by_player_name_color = format_chat_player_name(player)
|
|
if Jail.temp_ban_player(action_player,player.name,reason) then
|
|
game.print{'expcom-jail.temp-ban',action_player_name_color,by_player_name_color,reason}
|
|
else
|
|
return Commands.error{'expcom-jail.already-banned',action_player_name_color}
|
|
end
|
|
end)
|
|
|
|
Commands.new_command('clear-temp-ban','Removes temp ban from a player; this will not restore their items.')
|
|
:add_param('player',false,'player-role')
|
|
:add_alias('untemp-ban','remove-temp-ban')
|
|
:enable_auto_concat()
|
|
:register(function(player,action_player,raw)
|
|
local action_player_name_color = format_chat_player_name(action_player)
|
|
local by_player_name_color = format_chat_player_name(player)
|
|
if Jail.untemp_ban_player(action_player,player.name) then
|
|
game.print{'expcom-jail.temp-ban-clear',action_player_name_color,by_player_name_color}
|
|
else
|
|
return Commands.error{'expcom-jail.not-temp-banned',action_player_name_color}
|
|
end
|
|
end)
|