-- Morgue -- Conditie intrare: function fadein_morgue() if not IsQuestionAsked( Coroner, "_TB_Q829" ) then SetVisible( OMorgueMaryOver, false ) SetVisible( OMorgueMaryFront, false ) ChangeRoom( MorgueEstab ) FadeIn() T = Random (3) if T == 1 then PlayDialog (Coroner, "M0_ROBBINS_1302") end if T == 2 then PlayDialog (Coroner, "M0_ROBBINS_1303") end if T == 3 then PlayDialog (Coroner, "M0_ROBBINS_1304") end else SetVisible( OMorgueMaryOver, true ) SetVisible( OMorgueMaryFront, true ) ChangeRoom( MorgueEstab ) FadeIn() T = Random (3) if T == 1 then PlayDialog (Coroner, "M0_ROBBINS_1302") end if T == 2 then PlayDialog (Coroner, "M0_ROBBINS_1303") end if T == 3 then PlayDialog (Coroner, "M0_ROBBINS_1304") end end end AddEvent( nil, true, nil, Morgue, nil, "fadein_morgue" ) -- 24.1660 Enter HeadTraumaCU function enter_CUHeadTrauma() SetActive( HMorgueDragonHeadCU, false ) SetActive( HMorgueDragonHead, false ) PlayDialog( nil, "m5_robbins_1585" ) ChangeRoom( MorgueCSI ) PlayDialog( Grissom, "M5_GRISSOM_1586") UpdateCaseFile( KomodoDragon, INFORMATION, "_TB_E3182" ) ChangeRoom( MorgueDragonHead ) SetBackRoom( MorgueDragonHead, MorgueDragon ) end AddEvent( nil, false, nil, MorgueDragonHead, nil, "enter_CUHeadTrauma" ) -- 24.1680 Swab Digested food function swab_digestedfood() SetActive( HMorgueDragonAbdomenCU, false ) SetActive( HMorgueDragonAbdomen, false ) PlayDialog( nil, "M5_GRISSOM_1587" ) AddEvidence( ETSwabStomachDragon ) AddEvidenceDescriptionText( ETSwabStomachDragon, "_TB_E2061" ) UpdateCaseFile( KomodoDragon, INFORMATION, "_TB_E3183" ) end AddEvent( nil, false, swab, HMorgueDragonAbdomenCU, nil, "swab_digestedfood" ) function coroner_display_questions() DisplayQuestionList( Coroner ) end AddEvent( nil, true, nil, HCoroner, nil, "coroner_display_questions" ) AddEvent( nil, true, nil, MorgueEstab, nil, "coroner_display_questions" ) function grissom_morgue_questions() DisplayQuestionList( Grissom ) end AddEvent( nil, true, nil, MorgueCSI, nil, "grissom_morgue_questions" )