2016-02-13 11:19:37 +00:00
-- WolfAdmin module for Wolfenstein: Enemy Territory servers.
2016-02-16 13:10:00 +00:00
-- Copyright (C) 2015-2016 Timo 'Timothy' Smit
2016-02-13 11:19:37 +00:00
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- at your option any later version.
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
2016-08-29 20:00:11 +00:00
local auth = require " luascripts.wolfadmin.auth.auth "
2016-09-07 16:52:48 +00:00
2016-02-18 18:42:17 +00:00
local commands = require " luascripts.wolfadmin.commands.commands "
2016-09-07 16:52:48 +00:00
local players = require " luascripts.wolfadmin.players.players "
2016-02-13 11:19:37 +00:00
local stats = require " luascripts.wolfadmin.players.stats "
2016-09-07 16:52:48 +00:00
local util = require " luascripts.wolfadmin.util.util "
2016-02-13 11:19:37 +00:00
function commandPlayerLock ( clientId , cmdArguments )
if cmdArguments [ 1 ] == nil then
2016-03-16 21:46:23 +00:00
et.trap_SendConsoleCommand ( et.EXEC_APPEND , " csay " .. clientId .. " \" ^dplock usage: " .. commands.getadmin ( " plock " ) [ " syntax " ] .. " \" ; " )
2016-02-13 11:19:37 +00:00
return true
elseif tonumber ( cmdArguments [ 1 ] ) == nil then
cmdClient = et.ClientNumberFromString ( cmdArguments [ 1 ] )
else
cmdClient = tonumber ( cmdArguments [ 1 ] )
end
if cmdClient == - 1 then
et.trap_SendConsoleCommand ( et.EXEC_APPEND , " csay " .. clientId .. " \" ^dplock: ^9no or multiple matches for '^7 " .. cmdArguments [ 1 ] .. " ^9'. \" ; " )
return true
elseif not et.gentity_get ( cmdClient , " pers.netname " ) then
et.trap_SendConsoleCommand ( et.EXEC_APPEND , " csay " .. clientId .. " \" ^dplock: ^9no connected player by that name or slot # \" ; " )
return true
end
2016-09-07 18:06:07 +00:00
if players.isTeamLocked ( cmdClient ) then
2016-02-13 11:19:37 +00:00
et.trap_SendConsoleCommand ( et.EXEC_APPEND , " csay " .. clientId .. " \" ^dplock: ^7 " .. et.gentity_get ( cmdClient , " pers.netname " ) .. " ^9is already locked to a team. \" ; " )
return true
2016-08-29 20:00:11 +00:00
elseif auth.isallowed ( cmdClient , " ! " ) == 1 then
2016-02-13 11:19:37 +00:00
et.trap_SendConsoleCommand ( et.EXEC_APPEND , " csay " .. clientId .. " \" ^dplock: ^7 " .. et.gentity_get ( cmdClient , " pers.netname " ) .. " ^9is immune to this command. \" ; " )
return true
2016-09-02 12:52:34 +00:00
elseif auth.getlevel ( cmdClient ) > auth.getlevel ( clientId ) then
2016-02-13 11:19:37 +00:00
et.trap_SendConsoleCommand ( et.EXEC_APPEND , " csay " .. clientId .. " \" ^dplock: ^9sorry, but your intended victim has a higher admin level than you do. \" ; " )
return true
end
et.trap_SendConsoleCommand ( et.EXEC_APPEND , " chat \" ^dplock: ^7 " .. et.gentity_get ( cmdClient , " pers.netname " ) .. " ^9has been locked to his team \" ; " )
2016-09-07 18:06:07 +00:00
players.setTeamLocked ( cmdClient , true )
2016-02-13 11:19:37 +00:00
return true
end
2016-08-29 20:00:11 +00:00
commands.addadmin ( " plock " , commandPlayerLock , auth.PERM_LOCKPLAYER , " locks a player to a specific team " , " ^9[^3name|slot#^9] " )