diff options
author | madmaxoft <github@xoft.cz> | 2013-08-16 09:20:05 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-16 09:20:34 +0200 |
commit | 98d574f05ea46763fc9e762b0719ab3ef2271230 (patch) | |
tree | 65d6a2f1bc97f800839fd65c7f459bb908e459c2 /MCServer/Plugins/Core/motd.lua | |
parent | Merge pull request #96 from mc-server/buildsystest (diff) | |
download | cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.tar cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.tar.gz cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.tar.bz2 cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.tar.lz cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.tar.xz cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.tar.zst cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.zip |
Diffstat (limited to 'MCServer/Plugins/Core/motd.lua')
-rw-r--r-- | MCServer/Plugins/Core/motd.lua | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/MCServer/Plugins/Core/motd.lua b/MCServer/Plugins/Core/motd.lua deleted file mode 100644 index 3909c18e3..000000000 --- a/MCServer/Plugins/Core/motd.lua +++ /dev/null @@ -1,44 +0,0 @@ -function HandleMOTDCommand( Split, Player ) - ShowMOTDTo( Player ) - return true -end - -function LoadMotd() - - local File = io.open( "motd.txt", "r" ) - - -- Check if the file 'motd.txt' exists, else create it. - if not File then - CreateFile = io.open( "motd.txt", "w" ) - CreateFile:write("@6Welcome to the MCServer test server!\n@6http://www.mc-server.org/\n@6Type /help for all commands") - CreateFile:close() - else - File:close() - end - - for line in io.lines( "motd.txt" ) do - local TempMessage = line - -- Do a for loop that goes to each char in the line. - for I=1, string.len( TempMessage ) do - -- If the char is a '@' then check if the next char represents a color. - if string.sub( TempMessage, I, I ) == "@" then - local Char = string.sub( TempMessage, I + 1, I + 1 ) - local Color = ReturnColorFromChar( TempMessage, Char ) - -- If the next char represented a color then put the color in the string. - if Color ~= nil then - TempMessage = string.gsub( TempMessage, "@" .. Char, Color ) - end - end - end - -- Add the message to the list of messages. - Messages[#Messages + 1] = TempMessage - end - -end - -function ShowMOTDTo( Player ) - for I=1, #Messages do - Player:SendMessage(Messages[I]) - end -end - |