mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e8693c8db9
* configOf * replace some use of CBA_fnc_getObjectConfig
39 lines
813 B
Plaintext
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
|