- Katılım
- 4 yıl 1 ay 16 gün
- Mesajlar
- 62
peki herhangi bir bilgin varsa yardımcı olabilir misin ? aşağıdaki kodlarda bir problem olabileceğini söyledir esx_basicneeds
Kod:AddEventHandler('esx_status:loaded', function(status) TriggerEvent('esx_status:registerStatus', 'hunger', 1000000, '#FFFF00', function(status) -- #CFAD0F -- Amarelo return true end, function(status) status.remove(100) end) TriggerEvent('esx_status:registerStatus', 'thirst', 1000000, '#0099FF', function(status) -- #0C98F1 -- Azul return true end, function(status) status.remove(75) end) Citizen.CreateThread(function() while true do Citizen.Wait(1000) local playerPed = PlayerPedId() local prevHealth = GetEntityHealth(playerPed) local health = prevHealth TriggerEvent('esx_status:getStatus', 'hunger', function(status) if status.val == 0 then if prevHealth <= 150 then health = health - 5 else health = health - 1 end end end) TriggerEvent('esx_status:getStatus', 'thirst', function(status) if status.val == 0 then if prevHealth <= 150 then health = health - 5 else health = health - 1 end end end) if health ~= prevHealth then SetEntityHealth(playerPed, health) end end end) end)
Ben bir problem göremedim fakat discord üzerinden ulaşırsan yardımcı olabilirim.