beginscript; label Start: if (GetState() != 1) {EndFrame(); goto Start;} SetFollowWaypoint (80, 0, 0); ExcTargetType (0); IncludeGTarget (2); label InPosition: if (GetFollowMode() != 3) {EndFrame(); goto InPosition;} SetVar (0, GetTime()+300); label TimeWait: if (GetVar(0) > GetTime()) {EndFrame(); goto TimeWait;} //SetFollowWaypoint(76, 0, 0); //label BackByAPC: //if (GetFollowMode() != 3) //{EndFrame(); //goto APC;} //DespawnUnit(); EnterVehicle (soldier02, convoy_APC1); label End: EndFrame(); goto End; endscript; $