ACE3/addons/rearm/functions/fnc_storeAmmo.sqf

40 lines
1.0 KiB
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
/*
* Author: GitHawk
* Stores ammo in an ammo truck.
*
* Arguments:
2016-02-27 20:05:19 +00:00
* 0: Ammo Truck <OBJECT>
* 1: Unit <OBJECT>
*
* Return Value:
* None
*
* Example:
2016-02-27 20:05:19 +00:00
* [ammo_truck, player] call ace_rearm_fnc_storeAmmo
*
* Public: No
*/
params ["_truck", "_unit"];
2016-02-27 20:05:19 +00:00
private _attachedDummy = _unit getVariable [QGVAR(dummy), objNull];
if (isNull _attachedDummy) exitwith {};
private _magazineClass = _attachedDummy getVariable [QGVAR(magazineClass), "#noVar"];
[
TIME_PROGRESSBAR(5),
2016-02-27 20:05:19 +00:00
[_unit, _truck, _attachedDummy],
2016-02-27 19:31:07 +00:00
{
params ["_args"];
2016-02-27 20:05:19 +00:00
_args params ["_unit", "_truck", "_attachedDummy"];
[_truck, (_attachedDummy getVariable [QGVAR(magazineClass), ""]), true] call FUNC(addMagazineToSupply);
2016-02-27 19:31:07 +00:00
[_unit, true, true] call FUNC(dropAmmo);
},
"",
format [localize LSTRING(StoreAmmoAction), _magazineClass call FUNC(getMagazineName), getText(configOf _truck >> "displayName")],
{true},
["isnotinside"]
] call EFUNC(common,progressBar);