beginscript; label Check1: if (GetGlobalVar (1) != 1) { EndFrame(); goto Check1; } label Check2: if (GetGlobalVar (2) != 1) { EndFrame(); goto Check2; } label Check3: if (GetGlobalVar (3) != 1) { EndFrame(); goto Check3; } SetGlobalVar (5, 1); SetVar (0, GetTime()+20); label wait1: if (GetVar(0) > GetTime()) { EndFrame(); goto wait1; } // SetVar (0, GetTime()+20); // ChangeCamera (0x80b, 80, 120); //label miscut1: // if (GetVar(0) > GetTime()) // { // EndFrame(); // goto miscut1; // } // SetVar (0, GetTime()+20); // ChangeCamera (0x80c, 80, 120); // //label miscut2: // if (GetVar(0) > GetTime()) // { // EndFrame(); // goto miscut2; // } // SetVar (0, GetTime()+20); // ChangeCamera (0x80d, 80, 120); //label miscut3: // if (GetVar(0) > GetTime()) // { // EndFrame(); // goto miscut3; // } SpawnOtherUnit (actmiss); ChangeCamera (0x817, 80, 120); PausePlayer (); SetButtonJump(); if (HasJumped()) goto skipcs1; WaitForTime(50); JumpOnButton(false); label skipcs1: ResumePlayer(); ChangeCamera (0x801, 80, 120); SetVar (0, GetTime()+20); label misdie: if (GetVar(0) > GetTime()) { EndFrame(); goto misdie; } DespawnOtherUnit (actmiss); label End: EndFrame(); goto End; endscript; $