⚑Electric Vehicles

How to set up electric vehicles in the rhd_fuel

  1. Add model

If you're using a gameBuild version below 3258, you'll need to add electric vehicle models in the config/electric.lua file. Follow these steps:

Open the config/electric.lua file and add electric vehicle models to the vehicleModels table. Here’s an example of how to add electric vehicle models:

vehicleModels = {
    "surge",
    "iwagen",
    "voltic",
    "voltic2",
    "raiden",
    "cyclone",
    "tezeract",
    "neon",
    "omnisegt",
    "iwagen",
    "caddy",
    "caddy2",
    "caddy3",
    "airtug",
    "rcbandito",
    "imorgon",
    "dilettante",
    "khamelion",
}
  1. Modify Values in handling.meta

Lastly, you'll need to modify certain values in the handling.meta file to ensure the electric vehicles function correctly.

  • Change strHandlingFlags

Search for the strHandlingFlags entry and set its value to 1000 to adjust for electric vehicles.

<strHandlingFlags value="1000" />

Last updated