You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: yogstation/code/game/world.dm
+13-6Lines changed: 13 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -40,16 +40,17 @@ GLOBAL_LIST_EMPTY(donators)
40
40
var/s=""
41
41
var/server_name=CONFIG_GET(string/servername)
42
42
if (server_name)
43
-
s +="<br><b>[server_name]</b> — New Player Friendly — 99% Lag Free!!"
44
-
s +="<br>(<a href=\"https://tinyurl.com/yogsfo\">Forums</a>|<a href=\"https://tinyurl.com/yogsdis\">Discord</a>)"// The Forum & Discord links line
45
-
s +="<br>Time: <b>[gameTimestamp("hh:mm")]</b>"
46
-
s +="<br>Map: <b>[SSmapping?.config?.map_name ||"Unknown"]</b>"
47
-
s +="<br>Alert: <b>[capitalize(get_security_level())]</b>"
48
-
s +="<br><i>[pick(world.file2list("yogstation/strings/taglines.txt"))]</i><br>"
43
+
s +="[server_name]\] — Dive in Now: Perfect for Beginners!"
44
+
s +="<br>99% Lag-Free <b>MRP</b> Experience! Join the Adventure!"
45
+
s +="<br>Time: <b>[gameTimestamp("hh:mm")]</b> | Map: <b>[SSmapping?.config?.map_name ||"Unknown"]</b> | Alert: <b>[capitalize(get_security_level())]</b>"
46
+
s +="<br>\[<a href=\"https://yogstation.net/\">Website</a>"// link to our website so they can join forums + discord from here
49
47
48
+
//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.
50
49
51
50
//PLAYER COUNT
51
+
52
52
var/players=GLOB.clients.len
53
+
/*
53
54
var/popcaptext = ""
54
55
if(players)
55
56
popcaptext = "~[players] player\s"
@@ -59,11 +60,17 @@ GLOBAL_LIST_EMPTY(donators)
59
60
60
61
s += "\[[popcaptext][queuetext]"
61
62
63
+
*/
64
+
65
+
/*
66
+
62
67
//HOST
63
68
var/hostedby = CONFIG_GET(string/hostedby)
64
69
if (!host && hostedby)
65
70
s += " hosted by <b>[hostedby]</b>"
66
71
72
+
*/
73
+
67
74
//RETURN
68
75
status = s
69
76
game_state = (CONFIG_GET(number/extreme_popcap) && players >=CONFIG_GET(number/extreme_popcap)) //tells the hub if we are full
0 commit comments