qb-ambulancejob
Last updated
local function ResetAll()
-- Your existing code...
-- ===== VMS Needs =====
if GetResourceState('vms_needs') == 'started' then
local hunger = exports['vms_needs']:GetPercentageStatus('hunger')
if hunger < 50.0 then
exports['vms_needs']:SetStatus('hunger', 250.0) -- 250.0 = half
end
local thirst = exports['vms_needs']:GetPercentageStatus('thirst')
if thirst < 50.0 then
exports['vms_needs']:SetStatus('thirst', 250.0) -- 250.0 = half
end
exports['vms_needs']:SetStatus('stress', 0.0)
exports['vms_needs']:CleanupOptionalStatuses()
end
-- =====================
end