> 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_tuning/developer-api/client-exports.md).

# Client Exports

### openTuning

This allows you to open tuning menu by other resource or as admin in your admin menu.

{% code overflow="wrap" %}

```lua
---@param id: string - name of tuning or nil for isAdmin = true
---@param isAdmin: boolean - true or false
exports["vms_tuning"]:openTuning(id, isAdmin)
```

{% endcode %}

***

### vehicleHasLocator

Get information on whether the vehicle has a gps locator installed.

```lua
---@param {vehicle: number}: entity id of vehicle
---@return boolean
exports["vms_tuning"]:vehicleHasLocator(vehicle)
```
