wolfadmin/luascripts/admin/admin.lua

106 lines
3.3 KiB
Lua
Raw Normal View History

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/>.
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"
local players = require "luascripts.wolfadmin.players.players"
2016-02-13 11:19:37 +00:00
local stats = require "luascripts.wolfadmin.players.stats"
local admin = {}
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)
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
function admin.lockTeam(teamId)
teamLocks[teamId] = false
end
function admin.unlockTeam(teamId)
teamLocks[teamId] = false
end
function admin.lockPlayer(clientId)
stats.set(clientId, "teamLock", true)
2016-02-13 11:19:37 +00:00
end
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
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
return "\n\nIt 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\nMore info: ^7www.etkey.org"
2016-02-13 11:19:37 +00:00
end
end
events.trigger("onClientConnect", clientId, firstTime, isBot)
2016-02-13 11:19:37 +00:00
end
events.handle("onClientConnectAttempt", admin.onconnectattempt)
2016-02-13 11:19:37 +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
events.handle("onClientConnect", admin.onconnect)
2016-02-13 11:19:37 +00:00
return admin