mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
359 B
Plaintext
19 lines
359 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: joko // Jonas
|
|
* Reset the parachute system.
|
|
*
|
|
* Arguments:
|
|
* 0: Object
|
|
*
|
|
* Return Value:
|
|
* Boolean
|
|
*
|
|
* Example:
|
|
* [player] call FUNC(checkCutParachute);
|
|
*
|
|
* Public: No
|
|
*/
|
|
privat["_unit"];
|
|
_unit = _this select 0;
|
|
(animationState _unit == 'para_pilot' && !(_unit getvariable [QGVAR(chuteIsCut),false])) |