> For the complete documentation index, see [llms.txt](https://stg-store.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://stg-store.gitbook.io/documentation/scripts/vanaheim-fuel/garage-integrations.md).

# Garage Integrations

{% tabs %}
{% tab title="jg-advancedgarages" %}

1. Go to the `framework` folder, and open `cl-functions.lua`&#x20;
2. Find the `VehicleGetFuel` and `VehicleSetFuel` functions, which should look like this:
3. Make sure that in the Configurator or `config.lua` you have set the Fuel system to **None**.

```lua
function Framework.Client.VehicleGetFuel(vehicle)
    return exports['stg-vanaheimfuel']:GetFuel(vehicle)
end

function Framework.Client.VehicleSetFuel(vehicle, fuel)
    exports['stg-vanaheimfuel']:SetFuel(vehicle, fuel)
end
```

{% endtab %}
{% endtabs %}
