beginscript; //When driver drives into egg, picks it up label Start: SetGlobalVar(5, 0); label check: if (PlayerInArea(-1622,2415,75)) { FreezePlayer(); SetGlobalVar(5, 1); // trigger hud change goto camtrig; } EndFrame(); goto check; label camtrig: ChangeCamera(0x804,30,30); // camera showing player near egg nest SetVar (0, GetTime()+30); // TriggerMessage(188,0xffff,0xffff); // two more to go etc etc label timewait: if (GetVar(0) > GetTime()) { EndFrame(); goto timewait; } label camtrig2: ChangeCamera(0x806,30,30); SetVar(0, GetTime()+80); label timewait2: if (GetVar(0) > GetTime()) { EndFrame(); goto timewait2; } ChangeCamera(0x801,30,30); // change camera back ResumePlayer(); label End: EndFrame(); goto End; endscript; $