scn adTHoutHidescrfloat adTHoutHidetimershort adTHoutHidedisappearbegin OnActivate if ( adTHoutDoor01ref.GetDisabled == 1 ) adTHoutDoor01ref.enable adTHoutDoor01stubref.enable adTHoutLightBasin1ref.enable adTHoutLightFlame01ref.enable adTHoutLight1ref.enable message "A mysterious door appears..." PlaySound AMBThunderDistant adTHoutdoor01ref.PlayMagicShaderVisuals adTHouthideeffect, 2 if ( GetStage adTHchain01 == 10 ) SetStage adTHchain01 50 endif else adTHoutdoor01ref.PlayMagicShaderVisuals adTHouthideeffect, 2 message "The door disappears..." set adTHoutHidetimer to 2 set adTHoutHidedisappear to 1 endifendbegin GameMode if ( adTHoutHidedisappear == 1 ) if ( adTHoutHidetimer > 0 ) set adTHoutHidetimer to adTHoutHidetimer - getSecondsPassed else set adTHoutHidedisappear to 0 adTHoutDoor01stubref.disable adTHoutDoor01ref.disable adTHoutLightBasin1ref.disable adTHoutLightFlame01ref.disable adTHoutLight1ref.disable PlaySound AMBThunderDistant endif endifend
Initially I was trying to put the quest's if block in an entirely different section within the begin OnActivate section, but I thought the game might be ignoring it entirely, so I tried this, with no luck. Is there any other way to go about this?