F.A.Q


Debug Prints
  • For this go to wais-hudv6/config.lua.

  • Find the variable Config.ShowDebug = false and make it true.

Change Language
  • For this go to wais-hudv6/config.lua.

  • Then find Config.Language = ‘en’ and type a valid language file name ( ar, cz, ro, it, fr, fr, de, en )

Status Alerts ( Hunger Thirst )
  • For this go to wais-hudv6/config.lua.

  • Find the variable Config.SendStatusAlert = false and make it true

How to keep the map always active ( Show map on foot or Always )
  • For this go to wais-hudv6/config.lua.

  • Find the variable Config.ShowMapOnFoot = false and make it true.

Deactivating the music system
  • For this go to wais-hudv6/config.lua.

  • In the Config.MusicSystem table, find the variable [‘disable’] and set it to true.

  • Now the music system in the car control menu will be completely disabled (including events and codes).

Minimap becomes invisible / disappears and comes back
  • For this go to wais-hudv6/config.lua.

  • If you are using a postal map, find the Config.PostalMap table and set the [‘enabled’] variable to true. This will fix the map disappearance.

Show Postal Shortly?
  • For this go to wais-hudv6/config.lua.

  • Go to the Config.PostalMap table and set the [‘showNearPostal’] variable to true.

Cash / Money is showing 0
  • For this go to wais-hudv6/config.lua.

  • If money is item in your inventory, go to Config.MoneySettings and set [‘isItem’] variable to true. ( In ox_inventory, money is not an item. )

  • Your money will now appear in the hud information section.

Blocking the belt, carhud or music system in some vehicles or classes
  • For this go to wais-hudv6/config.lua.

  • Go to Config.BlacklistedVehicles table and add the vehicle or class as in the examples.

  • -- If its a model
    [`t20`] = {
         ["carhud"] = true,
    },
  • -- If its class
    [13] = {
        ["belt"] = true,
        ["music"] = true,
        ["carhud"] = true,
    },
Fuel does not display correctly / It doesn't work
  • For this go to wais-hudv6/config.lua.

  • Go to Config.GetVehicleFuel Function and put export for your Custom Fuel script, if any, and return this value with return. Example:

Config.GetVehicleFuel = function(vehicle)
    -- Original one
    --return GetVehicleFuelLevel(vehicle) or 0.0 
    
    return exports["my_fuel_script_name"]:GetFuelLevelFuncName(vehicle)
end

There are no more available yet, please open a ticket if the topics here are not suitable for what you are looking for.

Who developed it / How can I get help

You can recognise our script developers by the short names of the script. Scripts with short name ‘Wais’ are made by Ayazwai.

Last updated