⚡Electric Vehicles
How to set up electric vehicles in the rhd_fuel
1
Add model
Open the
config/electric.lua
file and add electric vehicle models to thevehicleModels
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",
}
2
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.
3
Change strHandlingFlags
Search for the strHandlingFlags
entry and set its value to 1000 to adjust for electric vehicles.
<strHandlingFlags value="1000" />
Last updated