mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 18:01:25 +00:00
22 lines
821 B
Lua
22 lines
821 B
Lua
Config = {}
|
|
Config.Locale = 'en'
|
|
|
|
Config.Accounts = {
|
|
bank = _U('account_bank'),
|
|
black_money = _U('account_black_money'),
|
|
money = _U('account_money')
|
|
}
|
|
|
|
Config.StartingAccountMoney = {bank = 50000}
|
|
|
|
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 -- how often to recieve pay checks in milliseconds
|
|
|
|
Config.EnableDebug = false
|
|
Config.InventoryKey = 'REPLAY_START_STOP_RECORDING_SECONDARY' -- Key F2 by default
|