Page cover image

🗃️Full config preview

A full preview of the config file of the script.

Config = {}

Config.ElectricCars = { --Add more if you have addon cars
    "neon",
    "voltic",
    "cyclone",
    "raiden",
    "tezeract",
    "dilettante",
    "imorgon",
    "surge",
    "khamelion",
}

Config.FuelLevelDriveSlow = 5
Config.MaxSpeedLowFuel = 10.0 -- Meters per second +-37km/h now
Config.ChargeTime = 30000 --in ms (30sec now)

Config.Zones = {
    ["zone1"] = {
        showBlip = true,
        blipPoint = vector3(274.97940063477, -337.283203125, 30.75),
        label = 'Charge station',
        blipSprite = 354, --https://docs.fivem.net/docs/game-references/blips/
        blipColour = 28, -- ^ at the bottom
        blipScale = 0.8,
        zone = {
            vector2(295.9765625, -348.94812011719),
            vector2(273.72085571289, -340.7600402832),
            vector2(274.97940063477, -337.283203125),
            vector2(263.0862121582, -332.81060791016),
            vector2(268.76885986328, -316.66125488281),
            vector2(303.35650634766, -329.41555786133),
        },
        minZ = 40.919868469238,
        maxZ = 46.919887542725,
    },
}

Config.FuelScript = 'ps-fuel' -- 'LegacyFuel' or 'ps-fuel'

Last updated