26 lines
		
	
	
	
		
			820 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			820 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
Config = {}
 | 
						|
 | 
						|
-- Vending Machine Settings
 | 
						|
Config.VendingProps = {
 | 
						|
    'bzzz_vending_candy_a',
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
-- Purchase Settings
 | 
						|
Config.VendingMachinePrice = 5000 -- Price to buy/register a vending machine
 | 
						|
Config.SellBackPercentage = 75 -- 75% of the original price when selling back
 | 
						|
 | 
						|
-- Items
 | 
						|
Config.RobberyItem = 'anglegrinder' -- Item needed to rob vending machines
 | 
						|
 | 
						|
-- Inventory Settings
 | 
						|
Config.MaxWeight = 50000 -- Maximum weight for vending machine stash
 | 
						|
Config.MaxSlots = 20 -- Maximum slots for vending machine stash
 | 
						|
 | 
						|
-- Pricing
 | 
						|
Config.DefaultPrice = 5 -- Default price if owner hasn't set a price
 | 
						|
 | 
						|
-- Robbery Settings
 | 
						|
Config.MinRobberyAmount = 50 -- Minimum money in machine to rob
 | 
						|
Config.MaxRobberyAmount = 500 -- Maximum money that can be stolen
 | 
						|
Config.RobberyItemBreakChance = 25 -- Chance (%) that robbery item breaks
 |