mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 18:01:25 +00:00
d23dfc291d
1) Increase Citizen.Wait(3000) to Citizen.Wait(4000) so that the loading screen will shut down at a unified time between local and remote hosted servers 2) Include ShutdownLoadingScreenNui() for custom loading screens 3) Add additional event for Config.UseESXIdentity called esx:loadingScreenOff for future requests that will prevent UI objects from showing before the loading screen is shut down 4) Added default opacity of 0.0 to UI so that the script can determine when to show the UI based on whether loading screen is open still or not 5) Removed list of resources to force stop as FiveM is against shutting these scripts down, and most don't agree with forcing scripts to stop
20 lines
811 B
Lua
20 lines
811 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.EnableHud = true -- 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
|
|
Config.UseESXIdentity = false -- Enable support for ESX Identity features, and support for custom loading screens
|
|
|
|
Config.IncompatibleResourcesToStop = {}
|