Es_extended and trew_hud_ui LOGO ERROR

Error

am my missing something because when i turn off the HUD of es_extended this hunger and thirst logo is not showing on the trew hud ui. Can someone help me

Hey. I had an exact issue, you need to go to trew_hud_ui index.html and change every display:none to display:block and If u want to see ur minimap you need to set minimap = true in config.lua trew hud ui file :slight_smile:

That is not the real way to fix his problem…

For the problem regarding that the icons don’t show up properly, please use this instead of display:none to display:block

In the client.lua

Go the line 671

Change this;
AddEventHandler('onClientMapStart', function()

To this
AddEventHandler('esx:onPlayerSpawn', function()

Now, for the default food/thirst bar, you need to desactivate it with esx_basicneeds in the client.lua file.

At line 43 to 52, you’ll see this;

AddEventHandler('esx_status:loaded', function(status)

	TriggerEvent('esx_status:registerStatus', 'hunger', 1000000, '#CFAD0F', function(status)
		return true
	end, function(status)
		status.remove(100)
	end)

	TriggerEvent('esx_status:registerStatus', 'thirst', 1000000, '#0C98F1', function(status)
		return true
	end, function(status)
		status.remove(75)
	end)

Change it to this;

AddEventHandler('esx_status:loaded', function(status)

	TriggerEvent('esx_status:registerStatus', 'hunger', 1000000, '#CFAD0F', function(status)
		return false
	end, function(status)
		status.remove(100)
	end)

	TriggerEvent('esx_status:registerStatus', 'thirst', 1000000, '#0C98F1', function(status)
		return false
	end, function(status)
		status.remove(75)
	end)

Edit: For the minimap part, @sync_damjan was correct. In config file, at line 65 is this;

	showMinimap			= false,

false means that when you are out of a car, the map will be hidden. If you want the map to show all the time, change it to true.

Yea. thanks for adding that, I forgot about that, bcz I thought that he wants only hud to show! :slight_smile:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.