summaryrefslogtreecommitdiffstats
path: root/Plugins/Core/onlogin.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Plugins/Core/onlogin.lua')
-rw-r--r--Plugins/Core/onlogin.lua20
1 files changed, 0 insertions, 20 deletions
diff --git a/Plugins/Core/onlogin.lua b/Plugins/Core/onlogin.lua
deleted file mode 100644
index a706f8024..000000000
--- a/Plugins/Core/onlogin.lua
+++ /dev/null
@@ -1,20 +0,0 @@
-function OnLogin( PacketData )
- if( PacketData.m_Username ~= "" ) then
- if( BannedPlayersIni:GetValueB("Banned", PacketData.m_Username, false) == true ) then
- local Server = cRoot:Get():GetServer()
- Server:SendMessage( PacketData.m_Username .. " tried to join, but is banned!" )
- LOGINFO( PacketData.m_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", PacketData.m_Username, false ) == false ) then -- not on whitelist
- local Server = cRoot:Get():GetServer()
- Server:SendMessage( PacketData.m_Username .. " tried to join, but is not on the whitelist." )
- LOGINFO( PacketData.m_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