mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 17:28:53 +00:00
14 lines
608 B
Lua
14 lines
608 B
Lua
Config = {}
|
|
Config.MaxPlayers = 32
|
|
Config.Accounts = { 'bank', 'black_money' }
|
|
Config.AccountLabels = { bank = 'Banque', black_money = 'Argent Sale' } -- French
|
|
-- Config.AccountLabels = { bank = 'Bank', black_money = 'Dirty Money' } -- English
|
|
Config.PaycheckInterval = 7 * 60000
|
|
Config.ShowDotAbovePlayer = false
|
|
Config.DisableWantedLevel = true
|
|
Config.RemoveInventoryItemDelay = 5 * 60000
|
|
Config.EnableWeaponPickup = true
|
|
Config.Locale = 'fr'
|
|
Config.EnableDebug = false
|
|
|