beginscript; //When driver drives into smoke (trigger) triangulator is dropped and the HUD is set to turn to the church segment (part 20 label Start: SetGlobalVar(4, 0); label check: if (PlayerInArea(6811, 6514, 20)) { PausePlayer(); SpawnOtherUnit(0x7826); SetGlobalVar(4, 1); // trigger hud change DisableEmitter(); goto camtrig; } EndFrame(); goto check; label camtrig: ChangeCamera(0x80c,30,30); SetVar (0, GetTime()+30); TriggerMessage(184,0xffff); label timewait: if (GetVar(0) > GetTime()) { EndFrame(); goto timewait; } // change camera back ChangeCamera(0x801,30,30); ResumePlayer(); label End: EndFrame(); goto End; endscript; $