Setup
Setup client config
Setup available items for loot
Categories = {
['medical'] = { -- Category name
['painkiller'] = { -- Item name
chance = 60, -- Chance of appearing in the loot point (1 to 100 in %)
min = 1, max = 3, -- Minimum and maximum quantity of the item (if not defined, it will be 1)
metadata = {durability = 50} -- Metadata to be added to the item (if not defined, it will be nil)
},
['bandage'] = {
chance = 50,
},
['firstaidkit'] = {
chance = 20,
}
},
['ammo'] = {
['ammo-22'] = {
chance = 30,
min = 6, max = 20
},
['ammo-38'] = {
chance = 20,
min = 7, max = 15
},
['ammo-44'] = {
chance = 20,
min = 5, max = 15
}
},
}Extra settings
Last updated