bumyplum 10 Posted October 28, 2018 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
Fleep51 0 Posted October 28, 2018 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
bumyplum 10 Posted October 28, 2018 I need it in script form :/ Share this post Link to post Share on other sites
Harzach 2518 Posted October 28, 2018 These should get you started: https://community.bistudio.com/wiki/enableInfoPanelComponent Share this post Link to post Share on other sites
pierremgi 4944 Posted October 28, 2018 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
bumyplum 10 Posted October 28, 2018 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
Harzach 2518 Posted October 28, 2018 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). 1 Share this post Link to post Share on other sites