> 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_cityhall/configuration-files/config.shared.lua.md).

# config.shared.lua

Preview File Updated: v1.1.1 - 30/08/2026

{% code fullWidth="true" %}

```lua
SH = {}

SH.GetVehiclePrice = function(model)
    if not model then return nil end;
    local model = tonumber(model) and model or joaat(model)
    
    for k, v in pairs(Config.VehiclePrices) do
		if model == k then
			return v;
		end
	end

	return nil;
end
```

{% endcode %}
