1
General Chat & Help and Support / Re: Save location of settings
« Last post by Chriss on April 11, 2021, 07:44:23 AM »Ahh yes it was sv.db, the folders in /data only store things like bans and groups. Thanks so much!
if (SERVER) then
function Kick( ply, cmd, args )
if !ply:IsUserGroup("moderator") and !ply:IsAdmin() and !ply:IsSuperAdmin() then return false end
local target = findplayer(args[1])
local reason = tostring(args[2])
target:Kick(reason)
end
end
concommand.Add("a_kick", Kick)
function ULib.ban( ply )
if ULib.addBan( ply:SteamID() ) then
ucl.addUser( ply:SteamID(), "probationary")
end
end