From 2b30644052ff66d2353af895c1935652b27c4c2d Mon Sep 17 00:00:00 2001 From: Milan* Date: Sat, 24 Dec 2016 18:11:20 +0100 Subject: [PATCH] random_messages: message improvements, updates and more messages --- mods/random_messages/init.lua | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/mods/random_messages/init.lua b/mods/random_messages/init.lua index fe4bc941..2f809918 100644 --- a/mods/random_messages/init.lua +++ b/mods/random_messages/init.lua @@ -46,13 +46,19 @@ function random_messages.check_params(name,func,params) end function random_messages.read_messages() + local mc = core.colorize + local mcc = "#A3B5CB" random_messages.messages = { - "# Illuna-Notes: Soup is very useful to fight hunger, everyone should have some.", - "# Illuna-Notes: Meet your fellows on our Mumbleserver at tchncs.de", - "# Illuna-Notes: Enjoy Illuna? Invite your friends today!", - "# Illuna-Notes: Have something to share? Create and join discussion at the Illuna forum: https://forum.illuna-minetest.tk!", - "# Illuna-Notes: Please be nice to the players around you. :)", - "# Illuna-Notes: Do you like this world or have some suggestions? Tell us about at https://forum.illuna-minetest.tk" + mc(mcc, "# Illuna-Notes: Soup is one of the most powerful hungerfighters."), + mc(mcc, "# Illuna-Notes: Actual talk with the players on our Mumbleserver at talk.illuna.rocks"), + mc(mcc, "# Illuna-Notes: Enjoy Illuna? Invite your friends today, and tell the people about us."), + mc(mcc, "# Illuna-Notes: Have something to share? Join the community https://meet.illuna.rocks today!"), + mc(mcc, "# Illuna-Notes: Please be nice to the players around you. :)"), + mc(mcc, "# Illuna-Notes: Did you know? The Illuna universe contains servers at port 30000 and 30002 too."), + mc(mcc, "# Illuna-Notes: Misplaced shadow or light? Stucking water or lava? Use /mapfix to fix it!"), + mc(mcc, "# Illuna-Notes: You can help keeping our servers fast by dropping a small donation at https://illuna.rocks/donate <3"), + mc(mcc, "# Illuna-Notes: You can help keeping our servers fast by using as less pipes on your machines as possible."), + mc(mcc, "# Illuna-Notes: You can help keeping our servers fast by avoinig loops and using trashcans on your pipeworks system."), } end