forked from Simnation/Main
25 lines
733 B
Lua
25 lines
733 B
Lua
Config = {}
|
|
|
|
-- Vending Machine Settings
|
|
Config.VendingProps = {
|
|
'prop_boxpile_03a',
|
|
|
|
}
|
|
|
|
-- Purchase Settings
|
|
Config.VendingMachinePrice = 5000 -- Price to buy/register a vending machine
|
|
|
|
-- Items
|
|
Config.RobberyItem = 'crowbar' -- 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
|