ACE3/addons/rearm/functions/fnc_storeAmmo.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

40 lines
1.0 KiB
Plaintext

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