Hello all!!
Im trying to create some script that every 2 minutes (maybe handled with a trigger) will share all knowsabouts of between side groups.
What i want to achieve is a side total awareness on the mission, if group A is engaging with an enemy BMP, group B, far away, will se that BMP on the map.
I tried with triggers, and using this script someone shared:
"AnyGroup" knowsAbout _target;
{
if(side _x == East) then {
_x reveal _target;
}
}forEach AllUnits;
I use it on a trigger and it gaves error.
Any ideas? It's for a multiplayer mission using zeus.
Shouldn't be hard, but im kinda a rookie on arma editing.
Thanks!!