ACE3/addons/common/functions/fnc_setAimCoef.sqf

52 lines
1.2 KiB
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
/*
* Author: xrufix, Glowbal
2018-04-10 01:55:28 +00:00
* Handle set AimCoef calls. Will use the highest available setting.
*
* Arguments:
2018-04-10 01:55:28 +00:00
* 0: Unit <OBJECT>
* 1: Unique ID <STRING>
* 2: Aim coefficient (a higher value causes more shaking) <NUMBER>
* 3: Add (true) or remove (false) <BOOL> (default: true)
*
* Return Value:
* None
*
* Example:
2018-04-10 01:55:28 +00:00
* [player, "ace_advanced_fatigue", 1, true] call ace_common_fnc_setAimCoef
*
* Public: Yes
*/
2017-11-29 19:00:51 +00:00
params ["_unit", "_id", "_setting", ["_add", true]];
private _exists = false;
private _highestCoef = 1;
private _map = _unit getVariable [QGVAR(setAimCoefMap), []];
_map = _map select {
_x params ["_xID", "_xSetting"];
if (_id == _xID) then {
_exists = true;
if (_add) then {
_x set [1, _setting];
_highestCoef = _highestCoef max _setting;
true
} else {
false
};
} else {
_highestCoef = _highestCoef max _xSetting;
true
};
};
2017-11-29 18:06:00 +00:00
if (!_exists && _add) then {
2017-11-29 18:27:51 +00:00
_highestCoef = _highestCoef max _setting;
_map pushBack [_id, _setting];
};
// Update the value
_unit setVariable [QGVAR(setAimCoefMap), _map];
_unit setCustomAimCoef _highestCoef;