Open the script LACallHelicopter.script with NotePad and find the following code float landingDirection = n.GetValidLandingAngle(&obj, CmdPos); if (landingDirection >= 0.f) { n.PushActionFlyTo(ACTION_APPEND, CmdPos, true, landingDirection); } else { n.PushActionFlyTo(ACTION_APPEND, CmdPos, false, -1.0f); } Lines 109 to 116 Replace that whole code with this line: n.PushActionFlyTo(ACTION_APPEND, CmdPos, false, -1.0f); Test it. If that works you might want to do the same thing for lines 178 to 185. Hoppah