Full View config.shared.lua

Preview File Updated: v1.0.3 - 11.12.2024

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

Last updated

Was this helpful?