ACE3/addons/rearm/functions/fnc_takeSuccess.sqf

47 lines
1.3 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: GitHawk
* Takes a magazine from an ammo truck.
*
* Arguments:
* 0: Params <ARRAY>
* 0: Unit <OBJECT>
* 1: Magazine Classname <STRING>
* 2: Ammo Truck <OBJECT>
*
* Return Value:
* None
*
* Example:
* [[player, "500Rnd_127x99_mag_Tracer_Red"]] call ace_rearm_fnc_takeSuccess
*
* Public: No
*/
params ["_args"];
2016-02-27 20:05:19 +00:00
_args params ["_unit", "_magazineClass", "_truck"];
TRACE_3("takeSuccess",_unit,_magazineClass,_truck);
2016-02-27 19:31:07 +00:00
private _success = true;
if (GVAR(supply) > 0) then {
2016-02-27 20:05:19 +00:00
_success = [_truck, _magazineClass] call FUNC(removeMagazineFromSupply);
2016-02-27 19:31:07 +00:00
};
if !(_success) exitWith {WARNING_2("takeSuccess failed to take [%1] from [%2]",_magazineClass,_truck);};
[_unit, "forceWalk", "ACE_rearm", true] call EFUNC(common,statusEffect_set);
[_unit, "blockThrow", "ACE_rearm", true] call EFUNC(common,statusEffect_set);
2016-02-27 19:31:07 +00:00
private _dummy = [_unit, _magazineClass] call FUNC(createDummy);
[_dummy, _unit] call FUNC(pickUpAmmo);
2016-02-27 19:31:07 +00:00
private _actionID = _unit addAction [
2015-08-21 20:57:14 +00:00
format ["<t color='#FF0000'>%1</t>", localize ELSTRING(dragging,Drop)],
'(_this select 0) call FUNC(dropAmmo)',
nil,
20,
false,
true,
"",
'!isNull (_target getVariable [QGVAR(dummy), objNull])'
];
_unit setVariable [QGVAR(ReleaseActionID), _actionID];