Beerkan 71 Posted April 8, 2014 ...All you have to do to stop the explosions is to not allow the parachute to take any damage. (vehicle player) allowdamage false Now you can slam into the ground at 60mph and not turn into a giant fireball of awesomeness!!! Thanks cobra4v320. Original post updated and credited. :D Share this post Link to post Share on other sites
cobra4v320 27 Posted April 8, 2014 Thanks cobra4v320. Original post updated and credited. :D Thanks Beerkan. I'm going to link to this page under my signature for people to hopefully find easier. If BI ever fixes the explosions the script will need to be edited again. Share this post Link to post Share on other sites
LoupVrt 14 Posted April 18, 2014 Beerkan, is it possible to drop multiple groups? I'm trying to drop 3 groups from a C130 but I can't figure out how the right format. This is a nogo: _drop =["oparag1,oparag2,oparag3",c13,45] execVM "scripts\eject.sqf"; Share this post Link to post Share on other sites
cobra4v320 27 Posted April 18, 2014 0 = [oparag1 , c13, 45] execVM "eject.sqf" 0 = [oparag2 , c13, 45] execVM "eject.sqf" 0 = [oparag3 , c13, 45] execVM "eject.sqf" I would shit my pants if my chute opened around 45. Share this post Link to post Share on other sites
LoupVrt 14 Posted April 18, 2014 To have something smooth to land on Cobra? ;) "Despite a severe opening shock, the 1940s-50s Paratroopers were able to jump as low as 143 feet in training, and 250 feet in actual combat." http://www.combatreform.org/llparachute.htm Thanks a lot for the script bit. ---------- Post added at 08:13 ---------- Previous post was at 07:43 ---------- By the way, I want to paradrop crewed vehicles (soviet style!), is it possible to adapt this script or should I look for another one? There's so much scipts around and my knowledge is so slim that a simple advice would help me a lot here. Share this post Link to post Share on other sites
Beerkan 71 Posted April 18, 2014 (edited) Beerkan, is it possible to drop multiple groups?I'm trying to drop 3 groups from a C130 but I can't figure out how the right format. This is a nogo: _drop =["oparag1,oparag2,oparag3",c13,45] execVM "scripts\eject.sqf"; I have a version of the script that hoofs out ALL cargo units. In other words everybody in the aircraft, (excluding pilot and crew).(Original post updated with new version and instructions) With this version you only have to declare the vehicle. Open Parachute height is optional, as if you don't add it, they open it at 100m Using your example, _drop =["oparag1,oparag2,oparag3",c13,45] execVM "scripts\eject.sqf"; Becomes _drop =[c13,45] execVM "scripts\eject.sqf"; New script (v2.5) /* Filename: Simple ParaDrop Script v0.7 Beta eject.sqf Author: Beerkan: Additional contributions cobra4v320 Description: A simple paradrop script that ejects all units assigned as cargo onboard, including players and AI (excluding crew) regardless of group assignments, side etc. If you're in the aircraft you're getting thrown out. Parameter(s): 0: VEHICLE - vehicle that will be doing the paradrop (object) 1: ALTITUDE - (optional) the altitude where the group will open their parachute (number) Example: _drop = [vehicle, altitude] execVM "eject.sqf" */ if (!isServer && hasInterface) exitWith {}; private ["_vehicle","_chuteheight","_paras","_dir"]; _vehicle = _this select 0; _chuteheight = if ( count _this > 1 ) then { _this select 1 } else { 100 }; _paras = assignedcargo _vehicle; _dir = direction _vehicle; paraLandSafe = { private ["_unit"]; _unit = _this select 0; (vehicle _unit) allowDamage false; waitUntil {isTouchingGround _unit || (position _unit select 2) < 1 }; _unit allowDamage false; _unit action ["EJECT", vehicle _unit]; sleep 2;// Para Units sometimes get damaged on landing. Wait 0.5 to prevent this. _unit switchmove "adthppnemstpsraswrfldnon_1"; _unit setvelocity [0,0,0]; _unit allowDamage true; }; { _x disableCollisionWith _vehicle; _x allowdamage false; _x action ["GETOUT", _vehicle]; _x setDir (_dir + 90); sleep 0.35;//So units are not too far spread out when they land. [_x] allowGetIn false;// Still not working. AI group leader still call out to units to board _vehicle } forEach _paras { waitUntil {(position _x select 2) <= _chuteheight}; if (vehicle _x != _x) exitWith {}; _chute = createVehicle ["Steerable_Parachute_F", position _x, [], ((_dir)- 5 + (random 10)), 'FLY']; _chute setPos (getPos _x); _x assignAsDriver _chute; _x moveIndriver _chute; _x allowdamage true; } forEach _paras; sleep 2; // Allows Paratroopers to clear Helo, including C130. { [_x] spawn paraLandSafe; } forEach _paras; ---------- Post added at 04:09 PM ---------- Previous post was at 04:06 PM ---------- ...By the way, I want to paradrop crewed vehicles (soviet style!), is it possible to adapt this script or should I look for another one? There's so much scipts around and my knowledge is so slim that a simple advice would help me a lot here. Funny you ask. Try this vehicle drop script. Wanna see it.... Checkout this page epic-armour-drop Edited September 15, 2014 by Beerkan Share this post Link to post Share on other sites
LoupVrt 14 Posted April 18, 2014 Colour me happy! Thanks a lot Beerkan. "Wanna see it..." You bet! Share this post Link to post Share on other sites
Guest Posted April 22, 2014 Thank you very much for informing us of the updated version, and for creating an archive :cool: Release frontpaged on the Armaholic homepage. Simple ParaDrop v2.5 ================================================ We have also "connected" these pages to your account on Armaholic. This means in the future you will be able to maintain these pages yourself if you wish to do so. Once this new feature is ready we will contact you about it and explain how things work and what options you have. When you have any questions already feel free to PM or email me! Share this post Link to post Share on other sites
Beerkan 71 Posted April 23, 2014 (edited) Ok, I now offer the latest update to the Simple ParaDrop script, (still in beta) which needs testing before I post it as a full update. In this latest version, finally both the paratroopers and the Paradrop vehicle are now vulnerable to damage at all times even during the ParaDrop. (And it really bugged that they both weren't!!) Ok, except when the para units are 3m from ground, as units can still suffer damage when landing. (I hope to figure out a fix for this too). I still also need to sort out safely landing on a building roof and not dying, which I'm looking into now. In the meantime let me know how you get on with this latest beta version. SEE Script in first post. Setup Parameters are the same for first version Edited September 15, 2014 by Beerkan 0.7 betaupdate Share this post Link to post Share on other sites
cobra4v320 27 Posted April 24, 2014 If its a beta I would change the version to 0.6 once you release it v1.0 ---------- Post added at 00:22 ---------- Previous post was at 00:10 ---------- Check your if statements. Share this post Link to post Share on other sites
beaar 78 Posted May 15, 2014 (edited) Cool stuff!! Thank you :) Edit: Using this script with the C130J port, players get ejected but the parachute never spawns. Any ideas? Parachute classname unchanged. Edited May 18, 2014 by rzon Share this post Link to post Share on other sites
buliwyf 4 Posted June 14, 2014 (edited) Is this MP compatible? If i use your script in MP my group ejected from chopper, but noone gets a parachute and hit ground very hard... in SP it works fine... *UPDATE* However... this changed part works for me: { waitUntil {(position _x select 2) < _chuteheight}; _chute = "Steerable_Parachute_F" createVehicle [0,0,0]; _chute setDir ((_dir - 5) + (random 10)); _chute setPos (getPos _x); _x assignAsDriver _chute; _x action ["GetInDriver", _chute]; } forEach _paras; Edited June 14, 2014 by Buliwyf Share this post Link to post Share on other sites
Purzel 35 Posted June 29, 2014 I´ve tried this script. It´s working very fine in SP, but not in MP (on our Server). Do you have any clue, why it´s not working? My parachute-team will get kicked of the chopper, but no parachutes opens... (only in MP!). I´m not good in scripting, so please take a look over it... :-) Actual I´m playing under ArmA3-V1.22, maybe that´s the problem. Another question: Your script depends on a unit, starting in a flying chopper with a certain height. What, if the MP-unit should be able to rerarm at some ammocrates before it gets into the chopper...? Then I guess your script cannot work, because of the pre-defined parachute-opening-height. The unit starts at ground-level (0m) and ascents with chopper to let´s say 150m, but the script will set the unit into the parachute when it´s at at 100m (on the way ascending to 150m) Do you have an idea, how to fix this? Greetz Purzel Share this post Link to post Share on other sites
Beerkan 71 Posted June 29, 2014 (edited) I´ve tried this script.It´s working very fine in SP, but not in MP (on our Server). Do you have any clue, why it´s not working? Try latest version from the main page. Another question: Your script depends on a unit, starting in a flying chopper with a certain height. What, if the MP-unit should be able to rerarm at some ammocrates before it gets into the chopper...? Then I guess your script cannot work, because of the pre-defined parachute-opening-height. The unit starts at ground-level (0m) and ascents with chopper to let´s say 150m, but the script will set the unit into the parachute when it´s at at 100m (on the way ascending to 150m) Do you have an idea, how to fix this? Greetz Purzel This won't happen. Don't assign a parachute to your unit. Your don't need a parachute. The script will move you into a parachute one ONCE you've been ejected and are at 100m. not once you're at 100m in the vehicle. Edited September 15, 2014 by Beerkan Share this post Link to post Share on other sites
Beerkan 71 Posted September 15, 2014 Script updated. Fixes for MP and Compatibility with Arma 3 version 1.28. See example mission file from first post. Any issues let me know. Enjoy. Share this post Link to post Share on other sites
Guest Posted September 15, 2014 Release frontpaged on the Armaholic homepage. Simple ParaDrop v0.8 ================================================ We have also "connected" these pages to your account on Armaholic. This means in the future you will be able to maintain these pages yourself if you wish to do so. Once this new feature is ready we will contact you about it and explain how things work and what options you have. When you have any questions already feel free to PM or email me! Share this post Link to post Share on other sites
markku 0 Posted November 12, 2014 I put script in mission folder, add this to group init: "Paras = group this;{_x assignasCargo UH80;_x moveinCargo UH80} forEach units group this;" Choppet name: UH80 and init: this flyInHeight 120; and this to trigger: "_drop =[uH80,100] execVM "eject.sqf";" When MP this don't open other people's parachute, just my and AI parachute's. Please little help. Share this post Link to post Share on other sites
buliwyf 4 Posted November 12, 2014 (edited) Locality problem in global area you use a local variable (_drop). So use following: my_drop =[uH80,100] execVM "eject.sqf"; Maybe... And i would trigger the script server only... *Update* I used it in this way in MP: nul=[[[uH80,300],'scripts\ejectParas.sqf'],'BIS_fnc_execVM',false] spawn BIS_fnc_MP and in ejectParas.sqf: if (!isServer) exitWith {}; Edited November 13, 2014 by Buliwyf Share this post Link to post Share on other sites
markku 0 Posted November 13, 2014 Big thanks sir, I test that later today :) Share this post Link to post Share on other sites
meaty 34 Posted November 14, 2014 found an issue, if your in a helicopters FFV spot, it wont kick you out :confused: Share this post Link to post Share on other sites
claws01 22 Posted December 1, 2014 parachute open but player get stuck in chopper , always happen with the ah99 Share this post Link to post Share on other sites
dartnecron 14 Posted December 4, 2014 Thank you for your suggestion! What about the trigger? As I understand it limits script execution (makes it only possible in that trigger's area). Is there a way to call it via addaction in vehicle init? Share this post Link to post Share on other sites
rtek 10 Posted June 14, 2015 (edited) Works if you assign the group to already be in the heli. This isn't practical if the vehicle is setup to take off from the ground once the group has boarded. I prefer to just use Cobra's original script that looks like this: _grp = _this select 0; { unassignVehicle _x; _x allowDamage false; moveOut _x; sleep 0.4; _chute = createVehicle ["NonSteerable_Parachute_F", position _x, [], 0, "NONE"]; _chute setPos (position _x); _x moveinDriver _chute; sleep 0.4; } forEach (units _grp); { waitUntil {(position _x select 2) < 2}; _parachute = nearestObjects [_x, ["ParachuteBase"], 5]; _x action ["eject", vehicle _x]; {deleteVehicle _x} count _parachute; _x switchMove "AmovPercMevaSrasWrflDf_AmovPknlMstpSrasWrflDnon"; _x allowDamage true; } forEach (units _grp); Edited June 14, 2015 by RTEK Share this post Link to post Share on other sites
mokeyii 10 Posted September 28, 2015 So I tried everything as suggested above, still I am having the same issue with MP compatibility. AI open them but players do not.@BuliwyfThis is supposed to go on the Trigger, Correct? nul=[[[UH80,300],'scripts\ejectParas.sqf'],'BIS_fnc_execVM',false] spawn BIS_fnc_MP And I renamed the script and added: if (!isServer) exitWith {}; to the top of the script.Still though I am having the exact same issue as before and nothing has changed. Has anyone figured out how to fix this or found a different script that does the same thing? Share this post Link to post Share on other sites