2016-02-27 19:31:07 +00:00
|
|
|
/*
|
|
|
|
* Author: GitHawk
|
|
|
|
* Sets the supply count.
|
|
|
|
*
|
2016-06-06 18:42:20 +00:00
|
|
|
* Arguments:
|
2016-02-27 20:05:19 +00:00
|
|
|
* 0: Ammo Truck <OBJECT>
|
2016-02-27 19:31:07 +00:00
|
|
|
* 1: Supply Count <NUMBER>
|
|
|
|
*
|
2016-06-06 18:42:20 +00:00
|
|
|
* Return Value:
|
2016-02-27 19:31:07 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [ammo_truck, 1000] call ace_rearm_fnc_setSupplyCount
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2016-05-12 12:55:40 +00:00
|
|
|
params [
|
|
|
|
["_truck", objNull, [objNull]],
|
|
|
|
["_supply", 0, [0]]
|
|
|
|
];
|
2016-02-27 19:31:07 +00:00
|
|
|
|
2016-02-27 20:05:19 +00:00
|
|
|
if (isNull _truck) exitWith {};
|
2016-02-27 19:31:07 +00:00
|
|
|
|
2016-02-27 20:05:19 +00:00
|
|
|
_truck setVariable [QGVAR(currentSupply), (_supply max 0), true];
|