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-02-22 09:28:43 +00:00
local constants = require " luascripts.wolfadmin.util.constants "
2016-02-13 11:19:37 +00:00
local events = require " luascripts.wolfadmin.util.events "
local settings = require " luascripts.wolfadmin.util.settings "
local files = require " luascripts.wolfadmin.util.files "
local db = require " luascripts.wolfadmin.db.db "
2016-09-04 08:20:21 +00:00
local players = require " luascripts.wolfadmin.players.players "
2016-02-13 11:19:37 +00:00
local stats = require " luascripts.wolfadmin.players.stats "
local admin = { }
2016-02-22 09:28:43 +00:00
local teamLocks = {
[ constants.TEAM_AXIS ] = false ,
[ constants.TEAM_ALLIES ] = false ,
[ constants.TEAM_SPECTATORS ] = false ,
}
2016-02-13 11:19:37 +00:00
function admin . isVoiceMuted ( clientId )
if stats.get ( clientId , " voiceMute " ) then
if stats.get ( clientId , " voiceMute " ) - os.time ( ) > 0 then
return true
else
admin.unmuteVoice ( clientId )
end
end
return false
end
function admin . isPlayerLocked ( clientId )
2016-02-22 09:01:52 +00:00
if stats.get ( clientId , " teamLock " ) then
2016-02-13 11:19:37 +00:00
return true
end
return false
end
function admin . muteVoice ( clientId , length )
stats.set ( clientId , " voiceMute " , length )
end
function admin . unmuteVoice ( clientId )
stats.set ( clientId , " voiceMute " , false )
end
2016-02-22 09:28:43 +00:00
function admin . lockTeam ( teamId )
teamLocks [ teamId ] = false
end
function admin . unlockTeam ( teamId )
teamLocks [ teamId ] = false
end
2016-02-22 09:01:52 +00:00
function admin . lockPlayer ( clientId )
stats.set ( clientId , " teamLock " , true )
2016-02-13 11:19:37 +00:00
end
2016-02-22 09:01:52 +00:00
function admin . unlockPlayer ( clientId )
stats.set ( clientId , " teamLock " , false )
2016-02-13 11:19:37 +00:00
end
function admin . setPlayerLevel ( clientId , level , adminId )
local playerid = db.getplayer ( stats.get ( clientId , " playerGUID " ) ) [ " id " ]
local adminid = db.getplayer ( stats.get ( adminId , " playerGUID " ) ) [ " id " ]
db.addsetlevel ( playerid , level , adminid , os.time ( ) )
end
2016-09-04 08:20:21 +00:00
function admin . onconnectattempt ( clientId , firstTime , isBot )
2016-02-13 11:19:37 +00:00
if firstTime then
if stats.get ( clientId , " playerGUID " ) == " NO_GUID " or stats.get ( clientId , " playerGUID " ) == " unknown " then
2016-08-29 11:27:19 +00:00
return " \n \n It appears you do not have a ^7GUID^9/^7etkey^9. In order to play on this server, enable ^7PunkBuster ^9(use ^7 \\ pb_cl_enable^9) ^9and/or create an ^7etkey^9. \n \n More info: ^7www.etkey.org "
2016-02-13 11:19:37 +00:00
end
end
2016-09-04 08:20:21 +00:00
events.trigger ( " onClientConnect " , clientId , firstTime , isBot )
2016-02-13 11:19:37 +00:00
end
2016-09-04 08:20:21 +00:00
events.handle ( " onClientConnectAttempt " , admin.onconnectattempt )
2016-02-13 11:19:37 +00:00
2016-09-04 08:20:21 +00:00
function admin . onconnect ( clientId , firstTime , isBot )
-- only increase the counter on first connection (fixes counter increase on
-- clientbegin which is also triggered on warmup/maprestart/etc)
stats.set ( clientId , " namechangeStart " , os.time ( ) )
stats.set ( clientId , " namechangePts " , 0 )
2016-02-13 11:19:37 +00:00
end
2016-09-04 08:20:21 +00:00
events.handle ( " onClientConnect " , admin.onconnect )
2016-02-13 11:19:37 +00:00
2016-09-04 08:20:21 +00:00
return admin