Jump to content
Sign in to follow this  
mr_shadow

Rank icons were moved

Recommended Posts

Hello,

I have realised that the map rank icons were moved after the last update, the previous file path i was using is:

"\a3\ui_f\data\map\Markers\NATO\b_inf.paa"

however for now it is:

"\ui_f_data\map\Markers\NATOb_inf.paa"

But he problem is that there are no ranks which were there before, like:

a3\UI_F\data\GUI\Cfg\Ranks\captain_gs.paa

Does anyone know where I can find this ranks?

Share this post


Link to post
Share on other sites

As far as I can see both are still in the same location according to the config viewer:

CfgMarkers

\A3\ui_f\data\map\markers\nato\b_inf.paa

CfgRanks

\A3\Ui_f\data\GUI\Cfg\Ranks\private_gs.paa

Never use the full path when calling markers but the ranks are still working fine using the same path I have used for a long time

Share this post


Link to post
Share on other sites

If you will go to the PBO maneger and will open it, you will see that it, not there anymore.

Let me show you the code:

["player", "onEachFrame", {


    private["_vis","_pos"];
   {

           _vis = lineIntersects [eyePos player, eyePos _x,player, _x];
           if(!_vis) then
           {
		if (side _x == west) then {


		                _pos = visiblePosition _x;
               _pos set[2,(getPosATL _x select 2) + 2.2];
              drawIcon3D ["\A3\Ui_f\data\GUI\Cfg\Ranks\private_gs.paa",[1,1,1,1],_pos,1,1,0,name _x,0,0.04];

		};
};

   } foreach playableUnits;
}, "Hello world!"] call BIS_fnc_addStackedEventHandler;







Share this post


Link to post
Share on other sites

Not sure about within the pbo as very rarely bother opening them unless I need something that is not in the config viewer or not working.

But I have just tested the locations on the mission I am currently updating by adding them into the briefing for ease of use and both the marker and rank are working as per my path in the briefing and the ranks also work on my unit as insignia. So not sure why they won't show up in the pbo path but they are working as per the config.

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
Sign in to follow this  

×