# L0lzer :
@Perin Yes they do drop vehicles out of planes just not with people in it.
I know that and that's what I said. He wants to
drive a vehicle out of a C-130. That doesn't happen, except in Bond films.
Attaching a vehicle to a parachute and having it fall is trivial. Letting a player drive a vehicle out of a static object, freefall in some way while letting the player determine the moment at which to deploy a chute is not.
// Called via _nul = ["HMMWV", herc] execVM "vehicleParadrop.sqf";
// Code based on BTK's cargo drop
_vehicleType = _this select 0;
_plane = _this select 1;
// Create the vehicle and move it just below the plane
_veh = _vehicleType createVehicle [1,1,1];
_veh setPosATL [getPosATL _plane select 0, getPosATL _plane select 1, ((getPosATL _plane select 2) - 20)];
// Create a parachute and attach it to the vehicle
_chute = "ParachuteBigWest" createVehicle position _veh;
_chute setPos (getPos _veh);
_veh attachTo [_chute,[0,0,-1.5]];
// Wait until ground reached
waitUntil {(getPosATL _veh select 2) < 2};
detach _veh;
sleep 3;
_veh setPosATL [(getPosATL _veh select 0),(getPosATL _veh select 1),0.001];
// Delete parachute
sleep 15;
deleteVehicle _chute;
Demo mission showing low altitude dropping of a vehicle with a parachute.