summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/onjoinleave.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/Core/onjoinleave.lua')
-rw-r--r--MCServer/Plugins/Core/onjoinleave.lua23
1 files changed, 0 insertions, 23 deletions
diff --git a/MCServer/Plugins/Core/onjoinleave.lua b/MCServer/Plugins/Core/onjoinleave.lua
deleted file mode 100644
index cd0ead4fc..000000000
--- a/MCServer/Plugins/Core/onjoinleave.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-function OnPlayerJoined(Player)
- ShowMOTDTo(Player)
- Player:GetWorld():BroadcastChat(cChatColor.Yellow .. "[JOIN] " .. cChatColor.White .. Player:GetName() .. " has joined the game")
- return false
-end
-
-
-
-
-
-function OnDisconnect(Player, Reason)
- Player:GetWorld():BroadcastChat(cChatColor.Yellow .. "[LEAVE] " .. cChatColor.White .. Player:GetName() .. " has left the game")
- return true
-end
-
-
-
-