Jump to content
Sign in to follow this  
xy20032004

Does anyone kown how to remove the fuelbar?

Recommended Posts

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

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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×