summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/onlogin.lua
blob: 6826305b28f152a7cfc16f8b8f2028e75639d921 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function OnLogin(Client, ProtocolVersion, Username)
	if( Username ~= "" ) then
		if( BannedPlayersIni:GetValueB("Banned", Username, false) == true ) then
			LOGINFO( Username .. " tried to join, but is banned!")
			return true -- Player is banned, return true to deny access
		end
		if( WhiteListIni:GetValueB("WhiteListSettings", "WhiteListOn", false ) == true ) then
			if( WhiteListIni:GetValueB("WhiteList", Username, false ) == false ) then -- not on whitelist
				local Server = cRoot:Get():GetServer()
				Server:SendMessage( Username .. " tried to join, but is not on the whitelist." )
				LOGINFO( Username .. " tried to join, but is not on the whitelist." )
				return true -- Deny access to the server
			end
		end
	end	
	return false
end