ScrapCars
Config.Cars = {
[1] = {
hash = `prop_rub_carwreck_9`, -- What model?
lootTable = 'prop_rub_carwreck_9', -- LootTable for Config.CarLoot
name = 'car', -- name of the target can change if you want
icon = 'fa-solid fa-capsule', -- icon for target https://fontawesome.com/
label = 'Search', -- label if you choose to change it
items = 'lockpick', -- or items = {lockpick = 1, hacing_device = 1} if they have one it will work
}
}Config.CarLoot = {
['prop_rub_carwreck_9'] = { -- must match lootTable in Config.Cars
items = { -- Item you get list | Types: 'item', 'weapon', 'account'
{ 'water', 5 },
{ 'bread', 10 },
}
}
}Last updated