Config

Config = {}

Config.Debug = false

Config.Locale = 'en' -- en | fi

Config.Target = 'ox_target' -- ox_target | qb-target

Config.IconPath = 'nui://ox_inventory/web/images/'

Config.Inventory = 'ox_inventory' -- ox_inventory | esx

Config.DefaultRecycleDuration = 1000
Config.ProgressUpdateInterval = 100

Config.Blips = {
	enabled = true,
	name = 'Recycling',
	sprite = 473,
	scale = 0.9,
	colour = 2
}

Config.RecyclingPoints = {

	['sandyshores'] = vector4(2349.9702, 3138.5166, 49.05, 349.0),
	['lossantos'] = vector4(-426.9129, -1683.1974, 19.86, 70.0),
	['paletobay'] = vector4(-170.1936, 6251.0938, 32.315, 225.0),

}


------------------------ server side ----------------------

recyclableItems = {

	['can'] = { 
      	  required = 2, 
          rewards = { 
            ['metal'] = { count = 1, chance = 100 } 
          }
    	},

	['jar'] = { 
          required = 1, 
	  duration = 2500, -- duration of one item | if you recycle 10 items it will be 10 * 2500
          rewards = { 
            ['glass'] = { count = {2, 4}, chance = 100 } 
        }
    },	
}

Last updated