From 3f63077e1c89cba5dd716c461fcef210f0554408 Mon Sep 17 00:00:00 2001 From: Byemoh Date: Fri, 27 Oct 2023 15:29:18 -0500 Subject: [PATCH 1/6] Update world.dm --- yogstation/code/game/world.dm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/yogstation/code/game/world.dm b/yogstation/code/game/world.dm index ede0c75fd43b..b97add12e8b3 100644 --- a/yogstation/code/game/world.dm +++ b/yogstation/code/game/world.dm @@ -40,13 +40,12 @@ GLOBAL_LIST_EMPTY(donators) var/s = "" var/server_name = CONFIG_GET(string/servername) if (server_name) - s += "
[server_name] — New Player Friendly — 99% Lag Free!!" - s += "
(Forums|Discord)" // The Forum & Discord links line - s += "
Time: [gameTimestamp("hh:mm")]" - s += "
Map: [SSmapping?.config?.map_name || "Unknown"]" - s += "
Alert: [capitalize(get_security_level())]" - s += "
[pick(world.file2list("yogstation/strings/taglines.txt"))]
" + s += "\[[server_name]\] — Dive In Now: Perfect for Beginners!" + s += "
99% Lag-Free Experience! Join the Adventure!" + s += "
Time: [gameTimestamp("hh:mm")] | Map: [SSmapping?.config?.map_name || "Unknown"] | Alert: [capitalize(get_security_level())]" + s += "
Website" // link to our website so they can join forums + discord from here + //As of October 27th, 2023 taglines.txt is no longer used in the status because we never had the characters to spare it, so it would put 2-3 random characters at the end and look bad. //PLAYER COUNT var/players = GLOB.clients.len From 1a0a21202483b3c2a79052a815ed494121986e15 Mon Sep 17 00:00:00 2001 From: Byemoh Date: Fri, 27 Oct 2023 17:06:00 -0500 Subject: [PATCH 2/6] Update world.dm --- yogstation/code/game/world.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/yogstation/code/game/world.dm b/yogstation/code/game/world.dm index b97add12e8b3..ca127c0924ce 100644 --- a/yogstation/code/game/world.dm +++ b/yogstation/code/game/world.dm @@ -48,6 +48,8 @@ GLOBAL_LIST_EMPTY(donators) //As of October 27th, 2023 taglines.txt is no longer used in the status because we never had the characters to spare it, so it would put 2-3 random characters at the end and look bad. //PLAYER COUNT + + /* var/players = GLOB.clients.len var/popcaptext = "" if(players) @@ -58,11 +60,17 @@ GLOBAL_LIST_EMPTY(donators) s += "\[[popcaptext][queuetext]" + */ + + /* + //HOST var/hostedby = CONFIG_GET(string/hostedby) if (!host && hostedby) s += " hosted by [hostedby]" + */ + //RETURN status = s game_state = (CONFIG_GET(number/extreme_popcap) && players >= CONFIG_GET(number/extreme_popcap)) //tells the hub if we are full From 4abae0e8bce74ccac206ce21f235d08f43df85c2 Mon Sep 17 00:00:00 2001 From: Byemoh Date: Fri, 27 Oct 2023 17:09:06 -0500 Subject: [PATCH 3/6] Update world.dm --- yogstation/code/game/world.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yogstation/code/game/world.dm b/yogstation/code/game/world.dm index ca127c0924ce..2ffd6e912b52 100644 --- a/yogstation/code/game/world.dm +++ b/yogstation/code/game/world.dm @@ -49,8 +49,8 @@ GLOBAL_LIST_EMPTY(donators) //PLAYER COUNT - /* var/players = GLOB.clients.len + /* var/popcaptext = "" if(players) popcaptext = "~[players] player\s" @@ -63,7 +63,7 @@ GLOBAL_LIST_EMPTY(donators) */ /* - + //HOST var/hostedby = CONFIG_GET(string/hostedby) if (!host && hostedby) From cedef3115aca082e0f42885b2363573ee8f7177b Mon Sep 17 00:00:00 2001 From: Byemoh Date: Fri, 27 Oct 2023 17:13:45 -0500 Subject: [PATCH 4/6] Update world.dm --- yogstation/code/game/world.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/yogstation/code/game/world.dm b/yogstation/code/game/world.dm index 2ffd6e912b52..7478c645a80b 100644 --- a/yogstation/code/game/world.dm +++ b/yogstation/code/game/world.dm @@ -40,7 +40,8 @@ GLOBAL_LIST_EMPTY(donators) var/s = "" var/server_name = CONFIG_GET(string/servername) if (server_name) - s += "\[[server_name]\] — Dive In Now: Perfect for Beginners!" + server_name = "\[" + server_name + "\]" + s += "[server_name] — Dive In Now: Perfect for Beginners!" s += "
99% Lag-Free Experience! Join the Adventure!" s += "
Time: [gameTimestamp("hh:mm")] | Map: [SSmapping?.config?.map_name || "Unknown"] | Alert: [capitalize(get_security_level())]" s += "
Website" // link to our website so they can join forums + discord from here From 30866f4596b689eea4aabe6aa939cfca54bf2ecf Mon Sep 17 00:00:00 2001 From: Byemoh Date: Fri, 27 Oct 2023 18:09:13 -0500 Subject: [PATCH 5/6] Update world.dm --- yogstation/code/game/world.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/yogstation/code/game/world.dm b/yogstation/code/game/world.dm index 7478c645a80b..6a30d6b03e85 100644 --- a/yogstation/code/game/world.dm +++ b/yogstation/code/game/world.dm @@ -40,11 +40,10 @@ GLOBAL_LIST_EMPTY(donators) var/s = "" var/server_name = CONFIG_GET(string/servername) if (server_name) - server_name = "\[" + server_name + "\]" - s += "[server_name] — Dive In Now: Perfect for Beginners!" + s += "[server_name]\] — Dive In Now: Perfect for Beginners!" s += "
99% Lag-Free Experience! Join the Adventure!" s += "
Time: [gameTimestamp("hh:mm")] | Map: [SSmapping?.config?.map_name || "Unknown"] | Alert: [capitalize(get_security_level())]" - s += "
Website" // link to our website so they can join forums + discord from here + s += "
\[Website" // link to our website so they can join forums + discord from here //As of October 27th, 2023 taglines.txt is no longer used in the status because we never had the characters to spare it, so it would put 2-3 random characters at the end and look bad. From f4361cec9ea29b7156459966dc9d0a268e1739bc Mon Sep 17 00:00:00 2001 From: Byemoh Date: Fri, 27 Oct 2023 18:48:49 -0500 Subject: [PATCH 6/6] Update world.dm --- yogstation/code/game/world.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yogstation/code/game/world.dm b/yogstation/code/game/world.dm index 6a30d6b03e85..19f4643c9869 100644 --- a/yogstation/code/game/world.dm +++ b/yogstation/code/game/world.dm @@ -40,8 +40,8 @@ GLOBAL_LIST_EMPTY(donators) var/s = "" var/server_name = CONFIG_GET(string/servername) if (server_name) - s += "[server_name]\] — Dive In Now: Perfect for Beginners!" - s += "
99% Lag-Free Experience! Join the Adventure!" + s += "[server_name]\] — Dive in Now: Perfect for Beginners!" + s += "
99% Lag-Free MRP Experience! Join the Adventure!" s += "
Time: [gameTimestamp("hh:mm")] | Map: [SSmapping?.config?.map_name || "Unknown"] | Alert: [capitalize(get_security_level())]" s += "
\[Website" // link to our website so they can join forums + discord from here