From 983d87e44356c4cfc8f8908ec365006323a4dbe0 Mon Sep 17 00:00:00 2001 From: Alexander Harkness Date: Sat, 27 Jul 2013 16:24:03 +0100 Subject: Added correct core plugin --- MCServer/Plugins/Core/onlogin.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 MCServer/Plugins/Core/onlogin.lua (limited to 'MCServer/Plugins/Core/onlogin.lua') diff --git a/MCServer/Plugins/Core/onlogin.lua b/MCServer/Plugins/Core/onlogin.lua new file mode 100644 index 000000000..4b2f24f17 --- /dev/null +++ b/MCServer/Plugins/Core/onlogin.lua @@ -0,0 +1,19 @@ +function OnLogin(Client, ProtocolVersion, Username) + if( Username ~= "" ) then + if( BannedPlayersIni:GetValueB("Banned", Username, false) == true ) then + local Server = cRoot:Get():GetServer() + Server:SendMessage( Username .. " tried to join, but is banned!" ) + 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 \ No newline at end of file -- cgit v1.2.3