ACE3/addons/rearm/functions/fnc_rearmSuccess.sqf

49 lines
1.5 KiB
Plaintext
Raw Normal View History

2015-08-15 16:43:13 +00:00
/*
* Author: GitHawk
* Rearms a vehicle.
2015-08-15 16:43:13 +00:00
*
* Arguments:
* 0: Params <ARRAY>
* 0: Target <OBJECT>
* 1: Unit <OBJECT>
* 2: Turret Path <ARRAY>
* 3: Number of magazines <NUMBER>
* 4: Magazine Classname <STRING>
* 5: Number of rounds <NUMBER>
2015-08-15 16:43:13 +00:00
*
* Return Value:
* None
*
* Example:
* [[vehicle, player, [-1], 2, "5000Rnd_762x51_Belt", 500]] call ace_rearm_fnc_rearmSuccess
2015-08-15 16:43:13 +00:00
*
* Public: No
*/
#include "script_component.hpp"
2015-08-18 16:09:37 +00:00
private ["_dummy", "_weaponSelect", "_turretOwnerID"];
2016-02-01 19:21:20 +00:00
params [["_args", [objNull, objNull, [], 0, "", 0], [[]], [6]]];
_args params ["_target", "_unit", "_turretPath", "_numMagazines", "_magazineClass", "_numRounds"];
2016-06-27 04:37:23 +00:00
TRACE_6("params",_target,_unit,_turretPath,_numMagazines,_magazineClass,_numRounds);
2015-08-15 16:43:13 +00:00
//hint format ["Target: %1\nTurretPath: %2\nNumMagazines: %3\nMagazine: %4\nNumRounds: %5", _target, _turretPath, _numMagazines, _magazineClass, _numRounds];
2015-08-15 16:43:13 +00:00
2015-08-16 21:52:37 +00:00
if (local _unit) then {
[_unit, true, true] call FUNC(dropAmmo);
2015-08-16 21:52:37 +00:00
};
2016-06-27 04:37:23 +00:00
//ToDo: Cleanup with CBA_fnc_ownerEvent in CBA 2.4.2
[QGVAR(rearmSuccessLocalEH), _this] call CBA_fnc_globalEvent;
/*
2015-08-18 16:09:37 +00:00
if (isServer) then {
_turretOwnerID = _target turretOwner _turretPath;
if (_turretOwnerID == 0) then {
[QGVAR(rearmSuccessLocalEH), _this, _vehicle] call CBA_fnc_targetEvent;
} else {
[QGVAR(rearmSuccessLocalEH), _this, _turretOwnerID] call CBA_fnc_targetEvent;
};
2015-08-15 16:43:13 +00:00
} else {
[QGVAR(rearmSuccessLocalEH), _this] call CBA_fnc_serverEvent;
};
2016-06-27 04:37:23 +00:00
*/