Files
drsingh dc4217b498 modified process scheduler, 510 compatibility, explosions moved to process
this is all very alpha please don't hate me too much if i fucked it up
2016-03-12 16:36:00 -08:00

66 lines
2.4 KiB
Plaintext

/proc/command_alert(var/text, var/title = "")
boutput(world, "<h1 class='alert'>[command_name()] Update</h1>")
if (title && length(title) > 0)
boutput(world, "<h2 class='alert'>[sanitize(title)]</h2>")
boutput(world, "<span class='alert'>[sanitize(text)]</span>")
boutput(world, "<br>")
/proc/command_announcement(var/text, var/title) //Slightly less conspicuous, but requires a title.
if(!title || !text) return
boutput(world, "<h2 class='alert'>[sanitize(title)]</h2>")
boutput(world, "<span class='alert'>[sanitize(text)]</span>")
boutput(world, "<br>")
/proc/advanced_command_alert(var/text, var/title="")
if(!text) return 0
var/list/mob/mob_list = list()
for(var/mob/M in world)
if(M.client)
mob_list+=M
var/mob/rand_mob_single = pick(mob_list) //A single randomly selected player
for(var/mob/M in mob_list)
spawn(0)
if(M.client)
var/mob/rand_mob_mult = pick(mob_list) //A randomly selected player that's different to each viewer
var/atom/A = get_turf(M.loc)
if(A) A = A.loc
if(title != "")
title = replacetext(title, "%name%", M.real_name)
title = replacetext(title, "%key%", M.key)
title = replacetext(title, "%job%", M.job ? M.job : "space hobo")
title = replacetext(title, "%area_name%", A ? A.name : "some unknown place")
title = replacetext(title, "%srand_name%", rand_mob_single.name)
title = replacetext(title, "%srand_job%", rand_mob_single.job ? rand_mob_single.job : "space hobo" )
title = replacetext(title, "%mrand_name%", rand_mob_mult.name)
title = replacetext(title, "%mrand_job%", rand_mob_mult.job)
title = sanitize(title)
text = replacetext(text, "%name%", M.real_name)
text = replacetext(text, "%key%", M.key)
text = replacetext(text, "%job%", M.job ? M.job : "space hobo")
text = replacetext(text, "%area_name%", A ? A.name : "some unknown place")
text = replacetext(text, "%srand_name%", rand_mob_single.name)
text = replacetext(text, "%srand_job%", rand_mob_single.job ? rand_mob_single.job : "space hobo" )
text = replacetext(text, "%mrand_name%", rand_mob_mult.name)
text = replacetext(text, "%mrand_job%", rand_mob_mult.job)
text = sanitize(text)
boutput(M, "<h1 class='alert'>[command_name()] Update</h1>")
if(title != "") boutput(M, "<h2 class='alert'>[title]</h2>")
boutput(M, "<span class='alert'>[text]</span><br>")
return 1