Jump to content
b3lx

Groups callsign display on map

Recommended Posts

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
setGroupIconsVisible[ true, false ];
{
	_x addGroupIcon[ "EmptyIcon" ];
	_x setGroupIconParams[ side _x call BIS_fnc_sideColor, groupId _x, 1, true ];
}forEach allGroups;

 

  • Thanks 1

Share this post


Link to post
Share on other sites
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
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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×