diff --git a/ARCMF.VR/f/arc/halo/fn_paraDrop.sqf b/ARCMF.VR/f/arc/halo/fn_paraDrop.sqf index 893bd51..dc6edb6 100644 --- a/ARCMF.VR/f/arc/halo/fn_paraDrop.sqf +++ b/ARCMF.VR/f/arc/halo/fn_paraDrop.sqf @@ -18,17 +18,18 @@ * Public: Yes */ -if (!isServer) exitWith { - _this remoteExec ["ARC_fnc_paraDrop", 2]; -}; - params [ ["_objects", [], [[], sideUnknown]], ["_position", [], [[], ""]], ["_height", 250, [0]], - ["_radius", 500, [0]] + ["_radius", 500, [0]], + ["_broadcast", false, [false]] ]; +if (!isServer && {_broadcast}) exitWith { + _this remoteExec ["ARC_fnc_paraDrop", 2]; +}; + if (_position isEqualType "") then {_position = getMarkerPos _position}; if (count _position == 0) exitWith {}; diff --git a/ARCMF.VR/f/arc/misc/fn_ambientAA.sqf b/ARCMF.VR/f/arc/misc/fn_ambientAA.sqf index 4409705..cc0e2b7 100644 --- a/ARCMF.VR/f/arc/misc/fn_ambientAA.sqf +++ b/ARCMF.VR/f/arc/misc/fn_ambientAA.sqf @@ -23,10 +23,11 @@ params [ ["_burstCount", 10, [0]], ["_shotDelay", 0.5, [0]], ["_burstDelay", 5, [0]], - ["_random", 0, [0]] + ["_random", 0, [0]], + ["_broadcast", false, [false]] ]; -if (!local _vehicle) exitWith { +if (!local _vehicle && {_broadcast}) exitWith { _this remoteExec ["ARC_fnc_ambientAA", _vehicle]; };