Change fuel capacity for vehicle
Location
Vehicle Fuel Capacity Configuration
Structure
{
model = "myCar",
maxFuel = 999,
}Example of the "CustomFuelCapacity"
-- custom list with custom values for each car you want
Config.CustomFuelCapacity = {
-- entry 1
{
model = "phantom3",
maxFuel = 300,
},
-- entry 2
{
model = "anotherCar",
maxFuel = 10,
},
}Last updated