Results 1 to 4 of 4

Thread: Paradrop Empty Chutes

  1. #1

    Paradrop Empty Chutes

    Hi there!

    I need help with my paradrop script. The enemy AI units ejects, but some of them doesn't seem to have parachutes, so they just falls to the ground and dies. Their parachutes actually opens later, but fall empty to the ground. I use the following code:
    Code:
        {
            unassignVehicle _x;
            _x action ["eject", _chopper];
            waituntil {vehicle _x != _chopper};
            sleep 0.5;
        } foreach _dropUnits;
    I've read about a few who have had similar problems, but no solution yet solves the problem for me. Does anyone know what I'm doing wrong, or if there is a good workaround for this? Thanks!
    Engima spells E-n-G-I-m-a

  2. #2
    Hi !

    Try with more "sleep" like sleep 1;
    Or Waituntil {vehicle _x == "Parachute classname"};

  3. #3
    I had the same results with para-drops, found that in preview they remain attached to chutes, but when playing on dedicated some units are not attached to chutes. Instead what happened when playing on dedicated is that unit and chute reattached themselves once they hit the ground, unit was alive and continue to act normally after that, very odd.

  4. #4
    Sergeant
    Join Date
    Nov 25 2010
    Location
    Örebro, Sweden
    Posts
    128
    Author of the Thread
    Yes, fencr0c. That's exactly what happens. After some tests I can see that this often happens on clients when there are a lot of scripts running, but it doesn't seem to happen on server (hosted). The computer that paradrop units are local to seem to handle them quite well. This must be a bug. In the script I try to find the units that does not have a parachute:

    Code:
    if (vehicle _unit == _unit) then
    but to no avail. Server seem to think that units are attached to parachutes.

    I will try to find some kind of workaround...

Similar Threads

  1. Paradrop produces empty chutes in MP
    By VirtualVikingX in forum ARMA 2 & OA : MISSIONS - Editing & Scripting
    Replies: 1
    Last Post: Nov 7 2010, 08:35
  2. Extra Chutes
    By Kocrachon in forum ARMA - TROUBLESHOOTING
    Replies: 0
    Last Post: Jan 11 2009, 05:13
  3. No Chutes
    By Canalien in forum OFP : CONFIGS & SCRIPTING
    Replies: 3
    Last Post: Oct 22 2006, 17:55
  4. Controlled descent and square chutes!
    By HateKeepsMeWarm in forum ARMA 2 & OA - SUGGESTIONS
    Replies: 3
    Last Post: Dec 10 2003, 01:29
  5. Chutes
    By edc in forum ADDONS & MODS: COMPLETE
    Replies: 13
    Last Post: Aug 1 2002, 01:17

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •