b3lx 161 Posted March 19, 2020 Is there any way to show callsigns on group icons on the map? I found this link about an arma 2 method but it didn't work. Share this post Link to post Share on other sites
Larrow 2820 Posted March 20, 2020 setGroupIconsVisible[ true, false ]; { _x addGroupIcon[ "EmptyIcon" ]; _x setGroupIconParams[ side _x call BIS_fnc_sideColor, groupId _x, 1, true ]; }forEach allGroups; 1 Share this post Link to post Share on other sites
b3lx 161 Posted March 20, 2020 4 minutes ago, Larrow said: setGroupIconsVisible[ true, true ]; { _x addGroupIcon[ "EmptyIcon" ]; _x setGroupIconParams[ side _x call BIS_fnc_sideColor, groupId _x, 1, true ]; }forEach allGroups; I had made it work somehow but missed the BIS_fnc_sideColor part. Thanks Share this post Link to post Share on other sites
b3lx 161 Posted March 21, 2020 On 3/20/2020 at 1:37 AM, Larrow said: setGroupIconsVisible[ true, false ]; { _x addGroupIcon[ "EmptyIcon" ]; _x setGroupIconParams[ side _x call BIS_fnc_sideColor, groupId _x, 1, true ]; }forEach allGroups; Do you know how to hide enemies before they are known? I use a knowsabout workaround but maybe there's a more straightforward solution Share this post Link to post Share on other sites
Grumpy Old Man 3545 Posted March 21, 2020 Check this out, should get you started, fairly easy to adapt. Cheers 1 Share this post Link to post Share on other sites