41 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| --[[
 | |
|     If you have a different script name for the following ones, change it to your one
 | |
|     Example:
 | |
| 
 | |
|     EXTERNAL_SCRIPTS_NAMES = {
 | |
|         ["es_extended"] = "mygamemode_extended",
 | |
|     }
 | |
| ]]
 | |
| 
 | |
| EXTERNAL_SCRIPTS_NAMES = {
 | |
|     ["es_extended"] = "es_extended",
 | |
|     ["qb-core"] = "qb-core",
 | |
| 
 | |
|     ["vehicles_keys"] = "vehicles_keys", -- jaksam's Vehicles Keys script
 | |
| 
 | |
|     -- If you don't use these inventories, don't touch
 | |
|     ["ox_inventory"] = "ox_inventory",
 | |
|     ["qs-inventory"] = "qs-inventory",
 | |
| }
 | |
| 
 | |
| -- Edit here your police jobs
 | |
| POLICE_JOBS_NAMES = {
 | |
|     ["police"] = true,
 | |
|     ["sheriff"] = true,
 | |
| }
 | |
| 
 | |
| -- Separator for values like $12.553.212 (default it's the dot '.')
 | |
| PRICES_SEPARATOR = "."
 | |
| 
 | |
| --[[
 | |
|     The shared object of the framework will refresh each X seconds. If for any reason you don't want it to refresh, set to nil
 | |
| ]] 
 | |
| SECONDS_TO_REFRESH_SHARED_OBJECT = nil
 | |
| 
 | |
| --[[
 | |
|     Available options:
 | |
|     - "default"
 | |
|     - "qs-inventory"
 | |
|     - "ox-inventory"
 | |
| ]]
 | |
| INVENTORY_TO_USE = "default"
 | 
