Full View config.vehicles.lua
Preview File Updated: v2.0.9 - 09.01.2025
-- ██████╗ ██████╗ ██╗ ██████╗███████╗███████╗
-- ██╔══██╗██╔══██╗██║██╔════╝██╔════╝██╔════╝
-- ██████╔╝██████╔╝██║██║ █████╗ ███████╗
-- ██╔═══╝ ██╔══██╗██║██║ ██╔══╝ ╚════██║
-- ██║ ██║ ██║██║╚██████╗███████╗███████║
-- ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═════╝╚══════╝╚══════╝
---@class Vehicles You can set the price for each vehicle separately from which the cost of tuning parts will be calculated
-- Read documentation to understand prices configuration: https://docs.vames-store.com/assets/vms_tuning/guides/understanding-prices
Config.Vehicles = {
["italigtb2"] = {
mechanicals = 500000, -- Engine, Brakes, Transmission, Suspension, Armor, Turbo
cosmetics = 300000, --
extras = 130000, --
},
["blista"] = 100000,
["brioso"] = 100000,
...
}
---@class VehiclesPricesByClass You can set the price for the vehicle class separately, based on which the cost of tuning parts will be calculated
Config.VehiclesPricesByClass = {
[0] = 65000, -- Compacts
[1] = 90000, -- Sedans
[2] = 110000, -- SUVs
[3] = 110000, -- Coupes
[4] = 80000, -- Muscle
[5] = 100000, -- Sports Classics
[6] = 150000, -- Sports
[7] = 180000, -- Super
[8] = 40000, -- Motorcycles
[9] = 65000, -- Off-road
[10] = 50000, -- Industrial
[11] = 50000, -- Utility
[12] = 50000, -- Vans
[13] = 2000, -- Cycles
[14] = 250000, -- Boats
[15] = 400000, -- Helicopters
[16] = 500000, -- Planes
[17] = 50000, -- Service
[18] = 50000, -- Emergency
[19] = 50000, -- Military
[20] = 50000, -- Commercial
[21] = 50000, -- Trains
[22] = 50000, -- Open Wheel
}
-- ██╗ ██╗███████╗██╗ ██╗██╗ ██████╗██╗ ███████╗███████╗ ██╗ ██╗███████╗████████╗
-- ██║ ██║██╔════╝██║ ██║██║██╔════╝██║ ██╔════╝██╔════╝ ██║ ██║██╔════╝╚══██╔══╝
-- ██║ ██║█████╗ ███████║██║██║ ██║ █████╗ ███████╗ ██║ ██║███████╗ ██║
-- ╚██╗ ██╔╝██╔══╝ ██╔══██║██║██║ ██║ ██╔══╝ ╚════██║ ██║ ██║╚════██║ ██║
-- ╚████╔╝ ███████╗██║ ██║██║╚██████╗███████╗███████╗███████║ ███████╗██║███████║ ██║
-- ╚═══╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═════╝╚══════╝╚══════╝╚══════╝ ╚══════╝╚═╝╚══════╝ ╚═╝
---@class VehiclesEnginesBack List of vehicles with engines at the rear
Config.VehiclesEnginesBack = {
[joaat("ninef")] = true,
[joaat("ninef2")] = true,
[joaat("bullet")] = true,
...
}
Last updated