Marmota
23
Did you installed InglêsKhmerEspanhol correctly?
Spicy1
24
Hello, if you have esx gamemode you need to change this string:
Add TriggerEvent in (resources[esx]\esx_status\client\main.lua esx_status:load)
TriggerEvent('esx_ladderhud:updateBasics', GetStatusData(true))
to look like this
RegisterNetEvent('esx_status:load')
AddEventHandler('esx_status:load', function(status)
for i=1, #Status, 1 do
for j=1, #status, 1 do
if Status[i].name == status[j].name then
Status[i].set(status[j].val)
end
end
end
Citizen.CreateThread(function()
while true do
for i=1, #Status, 1 do
Status[i].onTick()
end
SendNUIMessage({
update = true,
status = GetStatusData()
})
TriggerEvent('esx_ladderhud:updateBasics', GetStatusData(true))
Citizen.Wait(Config.TickTime)
end
end)
end)
Disabling Basic Needs Bars (resources[esx]\esx_basicneeds\client\main.lua esx_status:loaded)
AddEventHandler('esx_status:loaded', function(status)
TriggerEvent('esx_status:registerStatus', 'hunger', 1000000, '#FFFF00', -- amarelo
--TriggerEvent('esx_status:registerStatus', 'hunger', 1000000, '#CFAD0F', -- GOLD
function(status)
return false -- Change to true to show hunger bar | false to hide hunger bar
end, function(status)
status.remove(100)
end
)
TriggerEvent('esx_status:registerStatus', 'thirst', 1000000, '#0099FF', -- azul
--TriggerEvent('esx_status:registerStatus', 'thirst', 1000000, '#0C98F1', -- CYAN
function(status)
return false -- Change to true to show thirst bar | false to hide thirst bar
end, function(status)
status.remove(75)
end
)
1 Like
Possibly add a third one for esx_optionalneeds (drunk)
Naifen
26
Do you like this ESX HUD?
8 Likes
I’ve used a similar one and everyone liked it. However, it didn’t display society money for bosses, so it was removed.
What file is this string in?
Spicy1
29
You can check it here: https://github.com/MarmotaGit/esx_ladderhud
go in the description
ZenZoop
30
1 Like
How can ı change Hunger and Thirsty times
Would it be possible to keep the hud on top of the minimap?
Marmota
34
yes, you need to edit the .css
1 Like
P_1_T
36
my status bar is empty any idea ??
Bamseee
37
where in the css file do i change the position of the bars? Btw awesome looking hud
Hey mate, the status bars are empty, doesnt seem to be updating, ive configured it properly, do i need to update esx_status or something?
2 Likes
How can I change first show notifications?
Marmota
41
I think you cant change the gta v notify, you can try use pnotify
1 Like