From 98d574f05ea46763fc9e762b0719ab3ef2271230 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Fri, 16 Aug 2013 09:20:05 +0200 Subject: No more Core in the MCServer repo --- MCServer/Plugins/Core/motd.lua | 44 ------------------------------------------ 1 file changed, 44 deletions(-) delete mode 100644 MCServer/Plugins/Core/motd.lua (limited to 'MCServer/Plugins/Core/motd.lua') 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 - -- cgit v1.2.3