forked from Simnation/Main
ed
This commit is contained in:
parent
a2feb8b80a
commit
b086fbe4db
8 changed files with 887 additions and 27 deletions
27
resources/[inventory]/nordi_vending/config.lua
Normal file
27
resources/[inventory]/nordi_vending/config.lua
Normal file
|
@ -0,0 +1,27 @@
|
|||
Config = {}
|
||||
|
||||
-- Vending Machine Settings
|
||||
Config.VendingProps = {
|
||||
'prop_vend_coffe_01',
|
||||
'prop_vend_soda_01',
|
||||
'prop_vend_soda_02',
|
||||
'prop_vend_water_01'
|
||||
}
|
||||
|
||||
-- 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
|
Loading…
Add table
Add a link
Reference in a new issue