2012-01-26 17:44:37 -05:00
|
|
|
function HandleBanCommand( Split, Player )
|
|
|
|
if( #Split < 2 ) then
|
|
|
|
Player:SendMessage( cChatColor.Green .. "Usage: /ban [Player] <Reason>" )
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
local Reason = "You have been banned"
|
|
|
|
if( #Split > 2 ) then
|
|
|
|
Reason = table.concat(Split, " ", 3)
|
|
|
|
end
|
2012-10-11 10:30:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
if( BanPlayer(Split[2], Reason) == false ) then
|
|
|
|
Player:SendMessage( cChatColor.Green .. "Could not find player " .. Split[2] )
|
|
|
|
return true
|
|
|
|
end
|
2012-01-26 17:44:37 -05:00
|
|
|
|
2012-10-11 10:30:28 -04:00
|
|
|
return true
|
|
|
|
end
|
2012-01-26 17:44:37 -05:00
|
|
|
|
2012-10-11 10:30:28 -04:00
|
|
|
function BanPlayer( PlayerName, Reason )
|
|
|
|
if( Reason == nil ) then
|
|
|
|
Reason = "You have been banned"
|
|
|
|
end
|
|
|
|
|
|
|
|
local Success, RealName = KickPlayer( PlayerName, Reason )
|
|
|
|
if( Success == false ) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
LOGINFO( "'" .. RealName .. "' is being banned for ( "..Reason..") " )
|
2012-01-26 17:44:37 -05:00
|
|
|
|
2012-10-11 10:30:28 -04:00
|
|
|
local Server = cRoot:Get():GetServer()
|
|
|
|
Server:SendMessage( "Banning " .. RealName )
|
|
|
|
|
|
|
|
BannedPlayersIni:SetValueB("Banned", RealName, true)
|
2012-01-26 17:44:37 -05:00
|
|
|
BannedPlayersIni:WriteFile()
|
2012-10-11 10:30:28 -04:00
|
|
|
|
2012-01-26 17:44:37 -05:00
|
|
|
return true
|
|
|
|
end
|