mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
18 lines
313 B
Plaintext
18 lines
313 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
Name: check Cut Parachute
|
|
|
|
Author: joko // Jonas
|
|
|
|
Description:
|
|
Check if Parachute can be Cuted
|
|
|
|
Parameters:
|
|
0: Object
|
|
|
|
Returns:
|
|
Boolean
|
|
*/
|
|
_unit = _this select 0;
|
|
|
|
if (animationState _unit == "para_pilot" && !(GETVAR(_unit,chuteIsCuted,false))) then {true} else {false}; |