ACE3/addons/rearm/functions/fnc_rearmEntireVehicleSuccess.sqf

34 lines
941 B
Plaintext
Raw Normal View History

2015-08-16 00:18:53 +00:00
/*
* Author: GitHawk
* Rearm an entire vehicle.
2015-08-16 00:18:53 +00:00
*
* Arguments:
* 0: Vehicle <OBJECT>
2015-08-16 00:18:53 +00:00
*
* Return Value:
* None
*
* Example:
* [tank] call ace_rearm_fnc_rearmEntireVehicleSuccess
*
* Public: No
*/
#include "script_component.hpp"
private ["_turretPath", "_magazines", "_magazine", "_currentMagazines", "_maxMagazines", "_maxRounds", "_currentRounds"];
2015-08-16 00:18:53 +00:00
params ["_vehicle"];
2015-08-18 16:09:37 +00:00
if (isServer) then {
2015-08-16 00:18:53 +00:00
{
_turretOwnerID = _vehicle turretOwner _x;
if (_turretOwnerID == 0) then {
[[_vehicle, _x], QFUNC(rearmEntireVehicleSuccessLocal), _target] call EFUNC(common,execRemoteFnc);
} else {
EGVAR(common,remoteFnc) = [[_vehicle, _x], QFUNC(rearmEntireVehicleSuccessLocal), 0];
_turretOwnerID publicVariableClient QEGVAR(common,remoteFnc);
};
2015-08-18 16:09:37 +00:00
} count REARM_TURRET_PATHS;
} else {
[_this, QFUNC(rearmEntireVehicleSuccess), 1] call EFUNC(common,execRemoteFnc);
2015-08-18 16:09:37 +00:00
};