forked from overextended/ox_inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
37 lines (26 loc) · 1.01 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Config = {}
Config.Locale = 'en'
Config.Resource = GetCurrentResourceName()
-- Compare the version of this resource to the latest (default: every 60 minutes)
Config.CheckVersion = true
Config.CheckVersionDelay = 60
-- Time until unused inventory data is wiped
Config.DBCleanup = '6 MONTH'
-- Number of inventory slots
Config.PlayerSlots = 50
-- If vehicle plates are stored with a trailing space, set to false (i.e. `XXX-000 `)
Config.TrimPlate = true
-- Blur the screen while in an inventory
Config.EnableBlur = true
-- Requires esx_licenses
Config.WeaponsLicense = true
Config.WeaponsLicensePrice = 5000
-- Set the name of your logging resource, or false to disable
Config.Logs = false --'linden_logs'
-- Default keymapping for the inventory; players can assign their own
Config.InventoryKey = 'F2'
Config.VehicleInventoryKey = 'K'
-- Reload empty weapons automatically
Config.AutoReload = false
-- Randomise the price of items in each shop at resource start
Config.RandomPrices = false