fkk = fkk or {}
if not fkk.teams then -- Make sure TeamSuite isn't loaded twice
fkk.teams = {
version = "3.01",
debuging = true, -- show alot of console outputs?
overloadfuncs = true, -- allow teamsuite to savely overwrite event functions?
config = {
troubleshooting = false, -- var not in use yet, so it doesn't matter if it is true or false
admins = {
"STEAM:0:123456"
},
file = "lua/fkk/TeamSuite/teamsuite.cfg" -- If you want to save the config elsewhere, do it here
},
isAdmin = function (userid) -- You can replace this var by your own adminfunction, if you have one
userid = fkk.teams:getPlayersId (userid)
return fkk.lib.table.in_table (userid, fkk.teams.config.admins)
end
}
------------------------------------------------------------------------------------------------------------------------------------
-- END OF CONFIG