Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×
bumyplum

Air Veh Radar Hud Remove?

Recommended Posts

Any one know how to remove the hud of all air vehicles using a debug script?
i've tried 

showHUD [true,true,false,false,true,true,true,true];
but it doesn't seem to disable the ingame radar

Share this post


Link to post
Share on other sites

I dont know how to do this with a script but with options it works like this:

Options -> Game options -> Layout -> (here move the radar out of the screen)

Share this post


Link to post
Share on other sites

You need to set to false the first and third booleans in showHUD [false,true,false,false,true,true,true,true];

 

Share this post


Link to post
Share on other sites
40 minutes ago, pierremgi said:

You need to set to false the first and third booleans in showHUD [false,true,false,false,true,true,true,true];

 

Sorry this also disables the scroll wheel

Share this post


Link to post
Share on other sites

The RADAR isn't really a part of the HUD since the Sensor Overhaul.

Following up on my previous reply:

{(vehicle player) enableInfoPanelComponent [_x,"SensorsDisplayComponent",false]} forEach ["left","right"];

Disables RADAR for both the left and right panel. The command is local, so you'd need to target the appropriate unit(s).

  • Like 1

Share this post


Link to post
Share on other sites

×