mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
34 lines
712 B
Plaintext
34 lines
712 B
Plaintext
/*
|
|
* Author: joko // Jonas, Emperias, Zigomarvin
|
|
* Detect if the player and play the Gesture Animation
|
|
*
|
|
* Arguments:
|
|
* Animation <STRING>
|
|
*
|
|
* Return Value:
|
|
* <BOOL>
|
|
*
|
|
* Example:
|
|
* "GeniusAnimation" call ace_gestures_fnc_playSignal
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
TRACE_1("params",_this);
|
|
|
|
if (!GVAR(ReloadMutex)) exitWith {false};
|
|
|
|
private _gesture = if (_this select [0,2] == "BI") then {
|
|
_this select [2]
|
|
} else {
|
|
if (((animationState ACE_player) select [0, 12]) in ["amovpercmstp", "amovpercmwlk", "amovpercmtac"] && weaponLowered ACE_player) then {
|
|
format ["%1StandLowered", _this]
|
|
} else {
|
|
_this
|
|
};
|
|
};
|
|
|
|
ACE_player playAction _gesture;
|
|
true
|