mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
10 lines
308 B
Plaintext
10 lines
308 B
Plaintext
/proc/command_alert(var/text, var/title = "", var/maintitle = "NanoTrasen Update")
|
|
world << "<h1 class='alert'>[maintitle]</h1>"
|
|
|
|
if (title && length(title) > 0)
|
|
world << "<h2 class='alert'>[html_encode(title)]</h2>"
|
|
|
|
world << "<span class='alert'>[html_encode(text)]</span>"
|
|
world << "<br>"
|
|
|