mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 17:28:53 +00:00
145f8ebe75
- Fixed #256 - Implements #173 __NO OFFICIAL ESX SCRIPT WILL WORK WITH THIS AT THE MOMENT__ This commit will break your entire ESX if you dont use the new SQL format, follow the new one if you want it all to work properly. Scripts using `item.limit` will break too, instead use `xPlayer.canCarryItem(item, count)`
16 lines
695 B
Lua
16 lines
695 B
Lua
Config = {}
|
|
Config.Locale = 'fr'
|
|
|
|
Config.Accounts = { 'bank', 'black_money' }
|
|
Config.AccountLabels = { bank = _U('bank'), black_money = _U('black_money') }
|
|
|
|
Config.EnableSocietyPayouts = false -- pay from the society account that the player is employed at? Requirement: esx_society
|
|
Config.DisableWantedLevel = true
|
|
Config.EnableHud = true -- enable the default hud? Display current job and accounts (black, bank & cash)
|
|
Config.EnablePvP = true -- enable pvp?
|
|
Config.MaxWeight = 24 -- the max inventory weight without backpack
|
|
|
|
Config.PaycheckInterval = 7 * 60000
|
|
|
|
Config.EnableDebug = false
|