Files
CHOMPStation2/code/modules/tgs/v5/chat_commands.dm
2020-05-11 14:12:27 -04:00

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]```"