OFPEC Forum

Addons & Mods Depot => OFP - Addons & Mods General => Topic started by: SafetyCatch on 18 Apr 2005, 21:20:44

Title: Parachutes
Post 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?
Title: Re:Parachutes
Post by: StonedSoldier on 18 Apr 2005, 23:50:33
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
Title: Re:Parachutes
Post by: SafetyCatch on 19 Apr 2005, 12:32:35
Yes but can u assign a user made parachute to a unit to make it the unit's default parachute?
Title: Re:Parachutes
Post by: StonedSoldier on 20 Apr 2005, 10:24:53
you can thro scripting something like

Code: [Select]
#start
@(typeof (vehicle player))=="ParachuteWest"
deletevehicle (vehicle player)
_newpara = "nameofnewparachute" createvehicle getpos player
_newpara setpos getpos player
player moveindriver _newpara
@(isnull _newpara)
goto "start"
Title: Re:Parachutes
Post by: SafetyCatch on 20 Apr 2005, 11:19:44
OK thanks for that