summaryrefslogtreecommitdiffstats
path: root/Plugins/NewTest/motd.lua
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-01-26 23:44:37 +0100
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-01-26 23:44:37 +0100
commit45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf (patch)
treeea33c19161f5885896c21937204c21afaeba5eb9 /Plugins/NewTest/motd.lua
parentNo longer hard coded Lua files in new plugin system (diff)
downloadcuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar
cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.gz
cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.bz2
cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.lz
cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.xz
cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.zst
cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.zip
Diffstat (limited to '')
-rw-r--r--Plugins/NewTest/motd.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/Plugins/NewTest/motd.lua b/Plugins/NewTest/motd.lua
new file mode 100644
index 000000000..49cdcecad
--- /dev/null
+++ b/Plugins/NewTest/motd.lua
@@ -0,0 +1,10 @@
+function HandleMOTDCommand( Split, Player )
+ ShowMOTDTo( Player )
+ return true
+end
+
+function ShowMOTDTo( Player )
+ Player:SendMessage( cChatColor.Gold .. "Welcome to the MCServer test server!" );
+ Player:SendMessage( cChatColor.Gold .. "http://mcserver.ae-c.net/" );
+ Player:SendMessage( cChatColor.Gold .. "Type /help for all commands" );
+end \ No newline at end of file