πŸ”₯All scripts on our website are 50% off!πŸ”₯
Logo

Questions

Can I add more gas stations?

Yes, in the stations.lua file you can add or remove as many gas stations as you need.

I don't see the supercharger stations

Check that you have the supercharger prop added and that it starts before the script.

Can I add more electric vehicles?

Yes, in line 105 of config.lua you can see a default list, but you can add as many vehicles as you need.

Example of adding electric vehicles:

electricModels = {
    ["AIRTUG"] = true,
    ["NEON"] = true,
    ["RAIDEN"] = true,
    ["CADDY"] = true,
    ["CADDY2"] = true,
    ["CADDY3"] = true,
    ["CYCLONE"] = true,
    ["DILETTANTE"] = true,
    ["DILETTANTE2"] = true,
    ["SURGE"] = true,
    ["TEZERACT"] = true,
    ["IMORGON"] = true,
    ["KHAMELION"] = true,
    ["VOLTIC"] = true,
    ["IWAGEN"] = true,
    -- Add your custom electric vehicles here (UPPERCASE)
    ["YOURVEHICLE"] = true,
}

[!IMPORTANT] Vehicle model names must be in UPPERCASE

How do I change fuel consumption rates?

You can adjust fuel consumption in two ways:

  1. By RPM: Modify the Fuel.FuelUsage table in config.lua
  2. By Vehicle Class: Modify the Fuel.Classes table to set different consumption rates for vehicle types

How do I configure Gas98 premium fuel?

Gas98 is configured with:

  • Higher price per tick (Config.fuelPriceTickGas98)
  • Performance boost multiplier (Config.gas98TorqueMultiplier)

Can I change the petrol can price?

Yes, modify Config.petrolCanPrice in config.lua to set your desired price.

Does this work with custom inventory systems?

Yes! Set Config.customInventory = true and modify the customInventoryAddItem and customInventoryRemoveItem functions to match your inventory system's API.