ACE3/addons/rearm/functions/fnc_getSupplyCount.sqf
PabstMirror e8693c8db9
Various - Use configOf command for faster lookup (#8100)
* configOf

* replace some use of CBA_fnc_getObjectConfig
2021-02-18 12:58:08 -06:00

39 lines
813 B
Plaintext

#include "script_component.hpp"
/*
* Author: GitHawk
* Get the supply count.
*
* Arguments:
* 0: Ammo Truck <OBJECT>
*
* Return Value:
* Supply count <NUMBER>
*
* Example:
* [ammo_truck] call ace_rearm_fnc_getSupplyCount
*
* Public: Yes
*/
params [["_truck", objNull, [objNull]]];
if (GVAR(supply) != 1) exitWith {
WARNING("supply setting is not set to limited"); // func shouldn't have been called
-1
};
private _supply = _truck getVariable QGVAR(currentSupply);
if (isNil "_supply") then {
if (isNumber (configOf _truck >> QGVAR(defaultSupply))) then {
_supply = getNumber (configOf _truck >> QGVAR(defaultSupply));
} else {
_supply = 1200;
};
if (_supply > 0) then {
_truck setVariable [QGVAR(currentSupply), _supply, true];
};
};
_supply