xy20032004 0 Posted July 20, 2011 Does anyone kown how to remove the fuelbar and the status text beside it on the upper-left corner when you fly a plane or drive landvehicles? I tried to remove some digis in XXXXcansee = 1+2+4+8+16, I can remvoe compass and radar etc, yet can not remove the fuelbar and the status text beside it. Can someone show me the way to do it, I always like a cleaner screen. Or is there a mod which can hide all huds in playing and show the hud for a few seconds when you press some key? Share this post Link to post Share on other sites
.kju 3244 Posted July 20, 2011 Try this: class CfgPatches { class XXX { units[] = {}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {"CAUI"}; }; }; class RscIGProgress; class RscInGameUI { class RscUnitInfoTank { class CA_ValueFuel: RscIGProgress { texture = "ca\ui\data\clear_empty.paa";//"\ca\ui\data\igui_fuel_progress.paa"; }; }; class RscUnitInfo { class CA_ValueFuel: RscIGProgress { texture = "ca\ui\data\clear_empty.paa";//"\ca\ui\data\igui_fuel_progress.paa"; }; }; class RscUnitInfoAir: RscUnitInfo { class CA_ValueFuel: RscIGProgress { texture = "ca\ui\data\clear_empty.paa";//"\ca\ui\data\igui_fuel_progress.paa"; }; }; class RscUnitVehicle { class CA_ValueFuel: RscIGProgress { texture = "ca\ui\data\clear_empty.paa";//"\ca\ui\data\igui_fuel_progress.paa"; }; }; class RscUnitInfoUAV { class CA_ValueFuel: RscIGProgress { texture = "ca\ui\data\clear_empty.paa";//"\ca\ui\data\igui_fuel_progress.paa"; }; }; }; Share this post Link to post Share on other sites
xy20032004 0 Posted July 20, 2011 PvPscene, thanks a lot!!! Share this post Link to post Share on other sites
Gunter Severloh 4051 Posted July 20, 2011 Wouldn't this work? ReducedVehicleHUD (Gameplay) http://dev-heaven.net/attachments/download/9209/ReducedVehicleHUD_Gameplay_C_PvPscene.pbo Removes digital heading and speed display for all vehicles, the fuel display from all ground vehicles, the armor display from all but helicopters and finally the weapon display from all airplanes and non combat helicopters. Share this post Link to post Share on other sites