mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-28 18:32:04 +00:00
* port ADMIN_VERB and friends * some renaming * dumb * one more rename * never search and replace this codebase * fix TM issues, more renaming * add a static analysis to shore up user verbs * fix double message on roundstart * remove macro we're not using yet * convert remaining playsounds verbs * convert more verbs i missed somehow * why is this a completely different signature than everything else * fix ui_interact arg * fix logging view and others * buncha issues caught in TM * fix mentor tickets ui * fix bug report viewing * moron
15 lines
723 B
Plaintext
15 lines
723 B
Plaintext
USER_VERB(show_cinematic, R_MAINTAINER, "Cinematic", "Shows a cinematic.", VERB_CATEGORY_HIDDEN, cinematic as anything in list("explosion", null))
|
|
if(SSticker.current_state < GAME_STATE_PREGAME)
|
|
return
|
|
|
|
switch(cinematic)
|
|
if("explosion")
|
|
var/parameter = input(client, "station_missed = ?", "Enter Parameter", 0) as num
|
|
var/override
|
|
switch(parameter)
|
|
if(1)
|
|
override = input(client, "mode = ?","Enter Parameter", null) as anything in list("nuclear emergency", "fake", "no override")
|
|
if(0)
|
|
override = input(client, "mode = ?","Enter Parameter", null) as anything in list("blob", "nuclear emergency", "AI malfunction", "no override")
|
|
SSticker.station_explosion_cinematic(parameter, override)
|