mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 11:43:31 +00:00
Tgs chatcommand runtime (#7817)
This commit is contained in:
@@ -16,13 +16,13 @@
|
|||||||
var/client/C = X
|
var/client/C = X
|
||||||
if(C)
|
if(C)
|
||||||
counts++
|
counts++
|
||||||
if(C && !(istype(C.mob,/mob/new_player) || istype(C.mob, /mob/observer)))
|
if(!(istype(C.mob,/mob/new_player) || istype(C.mob, /mob/observer)))
|
||||||
if(C && C.mob && isbelly(C.mob.loc))
|
if(C.mob && isbelly(C.mob.loc))
|
||||||
bellied++
|
bellied++
|
||||||
if(C.is_afk())
|
if(C.is_afk())
|
||||||
afks++
|
afks++
|
||||||
else
|
else
|
||||||
active++
|
active++
|
||||||
|
|
||||||
return "Current server status:\n**Web Manifest:** <http://manifest.chompstation13.net/>\n**Players:** [counts]\n**Active:** [active]\n**Bar Statues:** [afks]\n**Bellied:** [bellied]\n\n**Round Duration:** [roundduration2text()]" //CHOMPEdit
|
return "Current server status:\n**Web Manifest:** <http://manifest.chompstation13.net/>\n**Players:** [counts]\n**Active:** [active]\n**Bar Statues:** [afks]\n**Bellied:** [bellied]\n\n**Round Duration:** [roundduration2text()]" //CHOMPEdit
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user