Files
cuberite-2a/MCServer/Plugins/Core/onjoinleave.lua
T

24 lines
400 B
Lua
Raw Normal View History

2013-07-31 17:10:59 +01:00
function OnPlayerJoined(Player)
ShowMOTDTo(Player)
Player:GetWorld():BroadcastChat(cChatColor.Yellow .. "[JOIN] " .. cChatColor.White .. Player:GetName() .. " has joined the game")
return false
2013-07-31 17:10:59 +01:00
end
2013-07-31 17:10:59 +01:00
function OnDisconnect(Player, Reason)
Player:GetWorld():BroadcastChat(cChatColor.Yellow .. "[LEAVE] " .. cChatColor.White .. Player:GetName() .. " has left the game")
return true
end