summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/ban-unban.lua
blob: 1db99fda5a3ea7d74756e723f81abf408992cf66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
function HandleBanCommand( Split, Player )

	if( #Split < 2 ) then
		SendMessage( Player, "Usage: /ban [Player] <Reason>" )
		return true
	end

	local Reason = cChatColor.Red .. "You have been banned." .. cChatColor.White .. " Did you do something illegal?"
	if( #Split > 2 ) then
		Reason = table.concat( Split, " ", 3 )
	end

	if KickPlayer(Split[2], Reason) == false then
		BannedPlayersIni:DeleteValue( "Banned", Split[2] )
		BannedPlayersIni:SetValueB( "Banned", Split[2], true )
		BannedPlayersIni:WriteFile()
		SendMessageFailure( Player, "Could not find player, but banned anyway" )
	else
		BannedPlayersIni:DeleteValue( "Banned", Split[2] )
		BannedPlayersIni:SetValueB( "Banned", Split[2], true )
		BannedPlayersIni:WriteFile()
		SendMessageSuccess( Player, "Successfully kicked and banned player" )
	end
	return true

end

function HandleUnbanCommand( Split, Player )

	if( #Split < 2 ) then
		SendMessage( Player, "Usage: /unban [Player]" )
		return true
	end

	if( BannedPlayersIni:GetValueB("Banned", Split[2], false) == false ) then
		SendMessageFailure( Player, "Player is not banned!" )
		return true
	end

	BannedPlayersIni:DeleteValue("Banned", Split[2])
	BannedPlayersIni:SetValueB("Banned", Split[2], false)
	BannedPlayersIni:WriteFile()

	LOGINFO( Player:GetName() .. " is unbanning " .. Split[2] )
	SendMessageSuccess( Player, "Unbanning " .. Split[2] )

	return true

end