Vending Machines Config
VendingMachinesConfig = {}
VendingMachinesConfig.Enabled = true -- If you want this module disabled set to false
VendingMachinesConfig.WitnessChance = 50 -- The chance of a witness seeing what your doing and reporting to the police
VendingMachinesConfig.AlarmChance = 30 -- The chance of an alarm being set off when tampering with the vending machine
VendingMachinesConfig.ChanceOfFreeLoot = 5 -- The chance of getting something for free when looking at the machine slot.
VendingMachinesConfig.Cooldown = 30 -- How long before the vending machine can be robbed again
VendingMachinesConfig.AmountOfHitsToBreakMin = 5 -- The min amount of hits required to break the vending machine
VendingMachinesConfig.AmountOfHitsToBreakMax = 10 -- The max amount of hits required to break the vending machine
VendingMachinesConfig.ValidWeapons = { -- What weapons are valid to break open the vending machine with
'WEAPON_BAT',
'WEAPON_CROWBAR',
'WEAPON_WRENCH',
}
VendingMachinesConfig.Loot = { -- What loot you can get from each vending machine type
amountofItems = 3, -- How many items you can get from the machine
["snack"] = {
"burger",
},
["drink"] = {
"sprunk"
}
}
VendingMachinesConfig.SnackMachines = { -- Snack Machine Models
-654402915,
}
VendingMachinesConfig.DrinkMachines = { -- Drink Machine Models
1114264700,
992069095
}
Last updated