* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
18 lines
839 B
Plaintext
18 lines
839 B
Plaintext
/client/proc/cinematic(cinematic as anything in list("explosion",null))
|
|
set name = "cinematic"
|
|
set category = "Fun"
|
|
set desc = "Shows a cinematic." // Intended for testing but I thought it might be nice for events on the rare occasion Feel free to comment it out if it's not wanted.
|
|
set hidden = 1
|
|
if(!SSticker)
|
|
return
|
|
switch(cinematic)
|
|
if("explosion")
|
|
var/parameter = input(src,"station_missed = ?","Enter Parameter",0) as num
|
|
var/override
|
|
switch(parameter)
|
|
if(1)
|
|
override = input(src,"mode = ?","Enter Parameter",null) as anything in list("nuclear emergency","gang war","fake","no override")
|
|
if(0)
|
|
override = input(src,"mode = ?","Enter Parameter",null) as anything in list("blob","nuclear emergency","AI malfunction","no override")
|
|
SSticker.station_explosion_cinematic(parameter,override)
|
|
return |