Disable few hud component

This commit is contained in:
P Gergő
2022-12-19 14:23:28 +01:00
parent 9c3c225b11
commit ea22899afd
2 changed files with 11 additions and 11 deletions
+10 -10
View File
@@ -19,7 +19,7 @@ Config.Accounts = {
Config.StartingAccountMoney = {bank = 50000}
Config.EnableSocietyPayouts = false -- pay from the society account that the player is employed at? Requirement: esx_society
Config.EnableHud = true -- enable the default hud? Display current job and accounts (black, bank & cash)
Config.EnableHud = false -- enable the default hud? Display current job and accounts (black, bank & cash)
Config.MaxWeight = 24 -- the max inventory weight without backpack
Config.PaycheckInterval = 7 * 60000 -- how often to recieve pay checks in milliseconds
Config.EnableDebug = false -- Use Debug options?
@@ -36,19 +36,19 @@ Config.DisableNPCDrops = false -- stops NPCs from dropping weapons on
Config.DisableWeaponWheel = false -- Disables default weapon wheel
Config.DisableAimAssist = false -- disables AIM assist (mainly on controllers)
Config.RemoveHudCommonents = {
[1] = false, --WANTED_STARS,
[2] = false, --WEAPON_ICON
[3] = false, --CASH
[4] = false, --MP_CASH
[1] = true, --WANTED_STARS,
[2] = true, --WEAPON_ICON
[3] = true, --CASH
[4] = true, --MP_CASH
[5] = false, --MP_MESSAGE
[6] = false, --VEHICLE_NAME
[7] = false,-- AREA_NAME
[8] = false,-- VEHICLE_CLASS
[9] = false, --STREET_NAME
[6] = true, --VEHICLE_NAME
[7] = true,-- AREA_NAME
[8] = true,-- VEHICLE_CLASS
[9] = true, --STREET_NAME
[10] = false, --HELP_TEXT
[11] = false, --FLOATING_HELP_TEXT_1
[12] = false, --FLOATING_HELP_TEXT_2
[13] = false, --CASH_CHANGE
[13] = true, --CASH_CHANGE
[14] = false, --RETICLE
[15] = false, --SUBTITLE_TEXT
[16] = false, --RADIO_STATIONS
+1 -1
View File
@@ -3,4 +3,4 @@ Config = {}
Config.StatusMax = 1000000
Config.TickTime = 1000
Config.UpdateInterval = 30000
Config.Display = true -- Enable the esx_status bars (disable if you are using another HUD)
Config.Display = false -- Enable the esx_status bars (disable if you are using another HUD)