> For the complete documentation index, see [llms.txt](https://docs.vames-store.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.vames-store.com/assets/vms_needs/compatibility/ambulance-job/wasabi_ambulance_v2.md).

# wasabi\_ambulance\_v2

***

#### 1. Open the file

Open the following file: **wasabi\_ambulance\_v2/bridge/framework/*****YOUR\_FRAMEWORK*****/server.lua**

Find `bridge.resetPlayerNeeds` function and replace it.

{% hint style="info" %}
This restores hunger and thirst to at least 50%.
{% endhint %}

```lua
function bridge.resetPlayerNeeds(source)
    -- ===== VMS Needs =====
    if GetResourceState('vms_needs') == 'started' then
        local hunger = exports['vms_needs']:GetPercentageStatus(source, 'hunger')
        if hunger < 50.0 then
            exports['vms_needs']:SetStatus(source, 'hunger', 250.0)
        end
        
        local thirst = exports['vms_needs']:GetPercentageStatus(source, 'thirst')
        if thirst < 50.0 then
            exports['vms_needs']:SetStatus(source, 'thirst', 250.0)
        end
        
        exports['vms_needs']:SetStatus(source, 'stress', 0.0)
    end
    -- =====================
end
```
