From 9cab5b05a28f19775697db94261872ca10b2c7b4 Mon Sep 17 00:00:00 2001 From: Milan* Date: Thu, 14 Sep 2017 22:28:15 +0200 Subject: [PATCH] update random_messages --- mods/random_messages/init.lua | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/mods/random_messages/init.lua b/mods/random_messages/init.lua index 64c2c43b..e9b61ae3 100644 --- a/mods/random_messages/init.lua +++ b/mods/random_messages/init.lua @@ -47,15 +47,17 @@ end function random_messages.read_messages() local mc = core.colorize - local mcc = "#A3B5CB" + local base = "#A3B5CB" + local url = "#54a3a6"--[[good color but too agressive in this case "#44be72"]] + local highlight = "#4f8abd" random_messages.messages = { - mc(mcc, "# Illuna-Notes: Soup is very useful to fight hunger, everyone should have some."), - mc(mcc, "# Illuna-Notes: Teamspeak? Mumble! Talk together on our Mumbleserver at tchncs.de!"), - mc(mcc, "# Illuna-Notes: Enjoy Illuna? Tell your friends and followers about it!"), - mc(mcc, "# Illuna-Notes: Have something to share? Join https://community.illuna.rocks today!"), - mc(mcc, "# Illuna-Notes: Official and connected Illuna [Matrix] room: #illuna:tchncs.de"), - mc(mcc, "# Illuna-Notes: Official and connected Illuna IRC room: #illuna on Freenode"), - mc(mcc, "# Illuna-Notes: Official and connected Telegram Group: https://t.me/illunaminetest"), + mc(base, "# Illuna-Notes: Teamspeak? Mumble! Talk together on our ")..mc(highlight, "Mumbleserver")..mc(base," at ")..mc(url,"tchncs.de!"), + mc(base, "# Illuna-Notes: Enjoy Illuna? Tell your friends and followers about it!"), + mc(base, "# Illuna-Notes: Have something to share? Join us at ")..mc(url, "https://community.illuna.rocks")..mc(base," today!"), + mc(base, "# Illuna-Notes: Chat together! Even from outside the game! Join our connected Illuna ")..mc(highlight, "[ matrix ]")..mc(base, " room:")..mc(url," #illuna:tchncs.de"), + mc(base, "# Illuna-Notes: Chat together! Even from outside the game! Join our connected Illuna IRC room: ")..mc(highlight, "#illuna")..mc(base," on ")..mc(highlight, "Freenode"), + mc(base, "# Illuna-Notes: Chat together! Even from outside the game! Join our connected ")..mc(highlight, "Telegram")..mc(base," Group: ")..mc(url,"https://t.me/illunaminetest"), + mc(base, "# Illuna-Notes: Did you know? Illuna is powered by donations, you can help letting it survive: ")..mc(url,"https://illuna.rocks/donate")..mc(base,". Each single microdonation helps a bunch. :3"), } end