diff options
Diffstat (limited to 'MCServer/Plugins/Core/onjoinleave.lua')
-rw-r--r-- | MCServer/Plugins/Core/onjoinleave.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/MCServer/Plugins/Core/onjoinleave.lua b/MCServer/Plugins/Core/onjoinleave.lua new file mode 100644 index 000000000..34b1a29ae --- /dev/null +++ b/MCServer/Plugins/Core/onjoinleave.lua @@ -0,0 +1,11 @@ +function OnPlayerJoined(Player) + ShowMOTDTo( Player ) + local Server = cRoot:Get():GetServer() + Server:SendMessage(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" ) +end
\ No newline at end of file |