Wizard Mileage version 1.2.0 released!

🚫 Disabled Vehicle

⁉️ Specify vehicle classes for which mileage and wear tracking should be disabled, preventing unnecessary tracking on certain vehicle types.

Configuration:

Set the vehicle class IDs to true to disable tracking for that class. Example classes:

  • [13] Cycles

  • [14] Boats


👀 Example configuration:

Config.ChangeSparkPlug = {
    Animation       = "fixing_a_ped",
    AnimationDict   = "mini@repair",
    Duration        = 5000,
    FreezeCar       = true,
    FreezePlayer    = true,
    Cancelable      = true
}

Config.ChangeOil = {
    Animation       = "fixing_a_ped",
    AnimationDict   = "mini@repair",
    Duration        = 10000,
    FreezeCar       = true,
    FreezePlayer    = true,
    Cancelable      = true
}

Config.ChangeOilFilter = {
    Animation       = "fixing_a_player",
    AnimationDict   = "mini@repair",
    Duration        = 5000,
    FreezeCar       = true,
    FreezePlayer    = true,
    Cancelable      = true
}

Config.ChangeAirFilter = {
    Animation       = "work2_base",
    AnimationDict   = "missmechanic",
    Duration        = 3000,
    FreezeCar       = true,
    FreezePlayer    = true,
    Cancelable      = true
}

Config.ChangeTires = {
    Animation       = "car_bomb_mechanic",
    AnimationDict   = "mp_car_bomb",
    Duration        = 7000,
    FreezeCar       = true,
    FreezePlayer    = true,
    Cancelable      = true
}

Config.ChangeBrakes = {
    Animation       = "machinic_loop_mechandplayer",
    AnimationDict   = "anim@amb@clubhouse@tutorial@bkr_tut_ig3@",
    Duration        = 5000,
    FreezeCar       = true,
    FreezePlayer    = true,
    Cancelable      = true
}

Config.ChangeSuspension = {
    Animation       = "car_bomb_mechanic",
    AnimationDict   = "mp_car_bomb",
    Duration        = 7000,
    FreezeCar       = true,
    FreezePlayer    = true,
    Cancelable      = true
}

Config.ChangeClutch = {
    Animation       = "fixing_a_ped",
    AnimationDict   = "mini@repair",
    Duration        = 15000,
    FreezeCar       = true,
    FreezePlayer    = true,
    Cancelable      = true
}

Last updated