ACE3/addons/overheating/functions/fnc_clearJam.sqf

58 lines
1.4 KiB
Plaintext
Raw Normal View History

2015-01-16 02:36:31 +00:00
/*
* Author: Commy2
2015-02-08 22:54:12 +00:00
* Make the unit clear the jam from a weapon
2015-01-16 02:36:31 +00:00
*
2015-02-08 22:54:12 +00:00
* Arguments:
* 0: Player <OBJECT>
* 1: Weapon <STRING>
* 2: Skip anim? <BOOL>
2015-01-16 02:36:31 +00:00
*
2015-02-08 22:54:12 +00:00
* Return Value:
* None
2015-01-16 02:36:31 +00:00
*
2015-02-08 22:54:12 +00:00
* Public: No
2015-01-16 02:36:31 +00:00
*/
#include "\z\ace\addons\overheating\script_component.hpp"
2015-01-16 02:36:31 +00:00
EXPLODE_3_PVT(_this,_unit,_weapon,_skipAnim);
2015-01-16 02:36:31 +00:00
private ["_jammedWeapons"];
2015-01-13 03:23:14 +00:00
_jammedWeapons = _unit getVariable [QGVAR(jammedWeapons), []];
if (_weapon in _jammedWeapons) then {
_jammedWeapons = _jammedWeapons - [_weapon];
2015-01-13 03:23:14 +00:00
_unit setVariable [QGVAR(jammedWeapons), _jammedWeapons];
if (count _jammedWeapons == 0) then {
private "_id";
2015-01-13 03:23:14 +00:00
_id = _unit getVariable [QGVAR(JammingActionID), -1];
[_unit, "DefaultAction", _id] call EFUNC(common,removeActionEventHandler);
2015-01-13 03:23:14 +00:00
_unit setVariable [QGVAR(JammingActionID), -1];
};
if !(_skipAnim) then {
private "_clearJamAction";
2015-01-13 03:23:14 +00:00
_clearJamAction = getText (configFile >> "CfgWeapons" >> _weapon >> "ACE_clearJamAction");
if (_clearJamAction == "") then {
_clearJamAction = getText (configFile >> "CfgWeapons" >> _weapon >> "reloadAction");
};
_unit playActionNow _clearJamAction;
if (_weapon == primaryWeapon _unit) then {
playSound QGVAR(fixing_rifle);
} else {
if (_weapon == secondaryWeapon _unit) then {
playSound QGVAR(fixing_pistol);
};
};
};
if (GVAR(DisplayTextOnJam)) then {
2015-05-28 19:59:04 +00:00
[localize LSTRING(WeaponUnjammed)] call EFUNC(common,displayTextStructured);
};
};