Warning: include(/var/www/html/forum/Sources/../../../includes/depot_files/OFPEC_get_header_image.inc.php): failed to open stream: No such file or directory in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 146

Warning: include(): Failed opening '/var/www/html/forum/Sources/../../../includes/depot_files/OFPEC_get_header_image.inc.php' for inclusion (include_path='.:/usr/local/lib/php') in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 146

Notice: Undefined index: OFPEC in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 152

Notice: Trying to access array offset on value of type null in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 152

Notice: Trying to access array offset on value of type null in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 152
    Home   Help Login Register  

Author Topic: Parachutes  (Read 1765 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