2015-08-23 21:56:48 +00:00
|
|
|
---
|
|
|
|
layout: wiki
|
2015-08-25 01:50:06 +00:00
|
|
|
title: Parachute Framework
|
|
|
|
description: Explains how to set-up a parachute with ACE3 parachute system.
|
2015-08-23 21:56:48 +00:00
|
|
|
group: framework
|
|
|
|
order: 5
|
|
|
|
parent: wiki
|
|
|
|
---
|
|
|
|
|
2015-08-25 01:50:06 +00:00
|
|
|
## 1. Adding reserve parachute to existing parachute
|
2015-08-23 21:56:48 +00:00
|
|
|
|
|
|
|
```c++
|
|
|
|
class CfgVehicles {
|
2015-08-25 01:50:06 +00:00
|
|
|
class BananaParachute {
|
|
|
|
ace_hasReserveParachute = 1; // Add reserve parachute (1-enabled, 0-disabled)
|
|
|
|
ace_reserveParachute = "ACE_ReserveParachute"; // Classname of the reserve parachute
|
2015-08-23 21:56:48 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
```
|