2016-08-18 16:37:38 +00:00
|
|
|
---
|
|
|
|
layout: wiki
|
|
|
|
title: Parachute Framework
|
|
|
|
description: Explains how to set-up a parachute with ACE3 parachute system.
|
|
|
|
group: framework
|
|
|
|
order: 5
|
|
|
|
parent: wiki
|
2016-08-30 13:49:04 +00:00
|
|
|
mod: ace
|
|
|
|
version:
|
|
|
|
major: 3
|
|
|
|
minor: 2
|
|
|
|
patch: 0
|
2016-08-18 16:37:38 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
## 1. Adding reserve parachute to existing parachute
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
class CfgVehicles {
|
|
|
|
class BananaParachute {
|
|
|
|
ace_hasReserveParachute = 1; // Add reserve parachute (1-enabled, 0-disabled)
|
|
|
|
ace_reserveParachute = "ACE_ReserveParachute"; // Classname of the reserve parachute
|
|
|
|
};
|
|
|
|
};
|
|
|
|
```
|