diff options
author | madmaxoft <github@xoft.cz> | 2013-08-13 23:10:59 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-13 23:10:59 +0200 |
commit | b65a91dde33bc8c7c3e802e94d1862206a1b6a32 (patch) | |
tree | 951beb27f1999845c3a71e7398a5ee40634a58ed /MCServer/Plugins | |
parent | Updated the Core Lua files in MCServer project externals. (diff) | |
download | cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.tar cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.tar.gz cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.tar.bz2 cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.tar.lz cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.tar.xz cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.tar.zst cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/Core/onjoinleave.lua | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/MCServer/Plugins/Core/onjoinleave.lua b/MCServer/Plugins/Core/onjoinleave.lua index c794aaf94..cd0ead4fc 100644 --- a/MCServer/Plugins/Core/onjoinleave.lua +++ b/MCServer/Plugins/Core/onjoinleave.lua @@ -1,24 +1,23 @@ + + + + + function OnPlayerJoined(Player) - --if( BannedPlayersIni:GetValueB("Banned", Player:GetName(), false) == true ) then - -- LOGINFO( Player:GetName() .. " tried to join, but is banned!" ) - -- KickPlayer(Player:GetName(), cChatColor.Red .. "You are banned!" ) - -- return true - --elseif( WhiteListIni:GetValueB("WhiteListSettings", "WhiteListOn", false ) == true ) then - -- if( WhiteListIni:GetValueB("WhiteList", Player:GetName(), false ) == false ) then - -- LOGINFO( Player:GetName() .. " tried to join, but is not whitelisted!" ) - -- KickPlayer(Player:GetName(), cChatColor.Red .. "You are not whitelisted!" ) - -- end - --else - ShowMOTDTo( Player ) - local Server = cRoot:Get():GetServer() - Server:SendMessage(cChatColor.Yellow .. "[JOIN] " .. cChatColor.White .. Player:GetName() .. " has joined the game" ) - return false - --end + ShowMOTDTo(Player) + Player:GetWorld():BroadcastChat(cChatColor.Yellow .. "[JOIN] " .. cChatColor.White .. Player:GetName() .. " has joined the game") + return false end + + + + function OnDisconnect(Player, Reason) - local Server = cRoot:Get():GetServer() - Server:SendMessage(cChatColor.Yellow .. "[LEAVE] " .. cChatColor.White .. Player:GetName() .. " has left the game" ) - LOG("Player " .. Player:GetName() .. " has left the game.") + Player:GetWorld():BroadcastChat(cChatColor.Yellow .. "[LEAVE] " .. cChatColor.White .. Player:GetName() .. " has left the game") return true -end
\ No newline at end of file +end + + + + |