mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-29 03:22:12 +00:00
16 lines
587 B
Plaintext
16 lines
587 B
Plaintext
/datum/tgs_chat_command/status
|
|
name = "status"
|
|
help_text = "Shows the current production server status"
|
|
admin_only = FALSE
|
|
|
|
/datum/tgs_chat_command/status/Run(datum/tgs_chat_user/sender, params)
|
|
return "**Players:** [TGS_CLIENT_COUNT]\n**Round Duration:** [roundduration2text()]\n**Web Manifest:** <https://vore-station.net/manifest.php>"
|
|
|
|
/datum/tgs_chat_command/parsetest
|
|
name = "parsetest"
|
|
help_text = "Shows the current production server status"
|
|
admin_only = FALSE
|
|
|
|
/datum/tgs_chat_command/parsetest/Run(datum/tgs_chat_user/sender, params)
|
|
return "```You passed:[params]```"
|