From aa6445042163366b225cf65f6ce7186377f2faf6 Mon Sep 17 00:00:00 2001 From: Alexander Harkness Date: Sat, 27 Jul 2013 16:15:29 +0100 Subject: Removed all the pre-exising core files. --- MCServer/Plugins/Core/motd.lua | 97 ------------------------------------------ 1 file changed, 97 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 928e7ebb3..000000000 --- a/MCServer/Plugins/Core/motd.lua +++ /dev/null @@ -1,97 +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 - - - - -function ReturnColorFromChar( Split, char ) - -- Check if the char represents a color. Else return nil. - if char == "0" then - return cChatColor.Black - elseif char == "1" then - return cChatColor.Navy - elseif char == "2" then - return cChatColor.Green - elseif char == "3" then - return cChatColor.Blue - elseif char == "4" then - return cChatColor.Red - elseif char == "5" then - return cChatColor.Purple - elseif char == "6" then - return cChatColor.Gold - elseif char == "7" then - return cChatColor.LightGray - elseif char == "8" then - return cChatColor.Gray - elseif char == "9" then - return cChatColor.DarkPurple - elseif char == "a" then - return cChatColor.LightGreen - elseif char == "b" then - return cChatColor.LightBlue - elseif char == "c" then - return cChatColor.Rose - elseif char == "d" then - return cChatColor.LightPurple - elseif char == "e" then - return cChatColor.Yellow - elseif char == "f" then - return cChatColor.White - elseif char == "k" then - return cChatColor.Random - elseif char == "l" then - return cChatColor.Bold - elseif char == "m" then - return cChatColor.Strikethrough - elseif char == "n" then - return cChatColor.Underlined - elseif char == "o" then - return cChatColor.Italic - elseif char == "r" then - return cChatColor.Plain - end -end \ No newline at end of file -- cgit v1.2.3 From 983d87e44356c4cfc8f8908ec365006323a4dbe0 Mon Sep 17 00:00:00 2001 From: Alexander Harkness Date: Sat, 27 Jul 2013 16:24:03 +0100 Subject: Added correct core plugin --- MCServer/Plugins/Core/motd.lua | 97 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create 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 new file mode 100644 index 000000000..2a42c80af --- /dev/null +++ b/MCServer/Plugins/Core/motd.lua @@ -0,0 +1,97 @@ +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 + + + + +function ReturnColorFromChar( Split, char ) + -- Check if the char represents a color. Else return nil. + if char == "0" then + return cChatColor.Black + elseif char == "1" then + return cChatColor.Navy + elseif char == "2" then + return cChatColor.Green + elseif char == "3" then + return cChatColor.Blue + elseif char == "4" then + return cChatColor.Red + elseif char == "5" then + return cChatColor.Purple + elseif char == "6" then + return cChatColor.Gold + elseif char == "7" then + return cChatColor.LightGray + elseif char == "8" then + return cChatColor.Gray + elseif char == "9" then + return cChatColor.DarkPurple + elseif char == "a" then + return cChatColor.LightGreen + elseif char == "b" then + return cChatColor.LightBlue + elseif char == "c" then + return cChatColor.Rose + elseif char == "d" then + return cChatColor.LightPurple + elseif char == "e" then + return cChatColor.Yellow + elseif char == "f" then + return cChatColor.White + elseif char == "k" then + return cChatColor.Random + elseif char == "l" then + return cChatColor.Bold + elseif char == "m" then + return cChatColor.Strikethrough + elseif char == "n" then + return cChatColor.Underlined + elseif char == "o" then + return cChatColor.Italic + elseif char == "r" then + return cChatColor.Plain + end +end \ No newline at end of file -- cgit v1.2.3