Skip to content

Commit

Permalink
zeus all units
Browse files Browse the repository at this point in the history
  • Loading branch information
tbox1911 committed Feb 29, 2024
1 parent 7d2b3c2 commit e760bae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core.liberation/scripts/server/game/zeus_synchro.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ while { true } do {

waitUntil { sleep 1; count allCurators > 0 };

// BLU / RED units
_zeusunits = [];
{
if ( ( _x distance lhd > 500 ) && alive _x ) then {
_zeusunits pushback _x;
};
} foreach (units GRLIB_side_friendly);
} foreach (units GRLIB_side_friendly) + (units GRLIB_side_enemy);

{
if ((typeof _x in _vehicleClassnames ) && (typeof _x != ammobox_o_typename) && (( _x distance lhd > 500 ) || (typeof _x == huron_typename)) && alive _x ) then {
Expand Down

0 comments on commit e760bae

Please sign in to comment.