OFPEC Forum
Addons & Mods Depot => OFP - Addons & Mods General => Topic started by: SafetyCatch on 18 Apr 2005, 21:20:44
-
Hi there,
I want to make a user made controllable parachute the default parachute for my units, is this done in the config or elsewehere, or is it possible at all?
-
well if your willing to wait like a month im making a steerable parachute simlar to the PCParachute that effectively replaces the BIS Chute
other than that try the 21vbglider addon and scripts or the PCParachute
-
Yes but can u assign a user made parachute to a unit to make it the unit's default parachute?
-
you can thro scripting something like
#start
@(typeof (vehicle player))=="ParachuteWest"
deletevehicle (vehicle player)
_newpara = "nameofnewparachute" createvehicle getpos player
_newpara setpos getpos player
player moveindriver _newpara
@(isnull _newpara)
goto "start"
-
OK thanks for that