Config = {} Config.Framework = { ["Framework"] = "qbcore", -- esx or qbcore ["ResourceName"] = "qb-core", -- es_extended or qb-core or your resource name ["NewCore"] = true, -- If you use the new core, set this to true ( esx or qb ). If you are using the old one, make it false and edit the event below according to yourself. ["SharedEvent"] = "esx:getSharedObject" -- Event name for old cores. } Config.SpeedType = "kmh" -- kmh or mph Config.ClockType = "24" --[[ PM = 12 hour clock 9.30 PM || 24 = 24 hour clock 21.30 ]] Config.DateFormat = "dd/mm/yyyy" -- dd/mm/yyyy, mm/dd/yyyy or yyyy/mm/dd Config.ShowMapOnlyInTheCar = true -- If true, the map will only be displayed when the player is in a vehicle. Config.PostalMap = false -- make true if you are using postal map. Config.StressSystem = false -- if you make true a stress bar will come up you can use your own scripts or qb-stress to raise the stress Config.DisableBeltSystem = false -- If you want to disable the belt system, make it true. Config.DisableSettingsMenu = false -- If you make true, the settings menu will be disabled. Config.Commands = { ["menu"] = "hud", ["belt"] = "belt", ["cinematic"] = "cinematic", } Config.Keybind = { -- https://docs.fivem.net/docs/game-references/controls/ ["belt"] = 311, -- K ["settings_menu"] = 100, -- 8 } Config.RefreshTimes = { ["hud"] = 100, ["carhud"] = 100, } Config.MoneySettings = { ["showMoneys"] = true, -- If you set true you can see all cash bank values the screen ["moneyItem"] = false, -- Make false if you are using Chezza inventory ["oldMoney"] = false, -- Make true if you are using Chezza inventory ["ox_inventory"] = GetResourceState("ox_inventory") == "started" and true or false, ["qs_inventory"] = GetResourceState("qs-inventory") == "started" and true or false, ["moneyItemName"] = "money", ["formatPrefix"] = ".", -- Determines whether a comma or a period appears between numbers when formatting the player's money, "." or "," ["formatSymbol"] = "$" -- Determines the symbol that appears before the player's money, "$" or "€" } Config.VoiceSettings = { ["pma"] = { {meter = 35}, {meter = 65}, {meter = 100} }, ["saltychat"] = { ["use"] = false, ["default"] = "1.0", ["ranges"] = { ["1.0"] = {meter = 10}, ["3.0"] = {meter = 30}, ["5.0"] = {meter = 100}, } } } Config.Notifications = { ["belt_plug"] = "Seat belt fastened.", ["belt_unplug"] = "Seat belt removed", ["cant_belt"] = "You can't do that in this car." } Config.BlackListVehicle = { ['t20'] = { ["carhud"] = false, ["belt"] = true }, } function Config.CustomNotify(typee, title, text, time) typee = typee == "primary" and "info" or typee or "info" title = title or "Enter title" text = text or "Enter text" time = time or 5000 -- Your export or trigger here end function Config.GetVehicleFuelLevel(vehicle) -- Native or your export here return GetVehicleFuelLevel(vehicle) end