Home   Help Search Login Register  

Author Topic: Parachutes  (Read 1279 times)

0 Members and 1 Guest are viewing this topic.

Offline SafetyCatch

  • Members
  • *
  • War...it's fantastic!
Parachutes
« 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?

StonedSoldier

  • Guest
Re:Parachutes
« Reply #1 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
« Last Edit: 18 Apr 2005, 23:51:31 by StonedSoldier »

Offline SafetyCatch

  • Members
  • *
  • War...it's fantastic!
Re:Parachutes
« Reply #2 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?

StonedSoldier

  • Guest
Re:Parachutes
« Reply #3 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"

Offline SafetyCatch

  • Members
  • *
  • War...it's fantastic!
Re:Parachutes
« Reply #4 on: 20 Apr 2005, 11:19:44 »
OK thanks for that