💸Cornerselling
local easyDrugOdds = {
policeCallChance = 0,
robberyChance = 0,
aggroChance = 0,
sellChance = 100,
sellAmountRange = {1, 15},
}
local regularDrugOdds = {
policeCallChance = 15,
robberyChance = 10,
aggroChance = 10,
sellChance = 60,
sellAmountRange = {1, 15},
}
local hardDrugOdds = {
policeCallChance = 15,
robberyChance = 15,
aggroChance = 15,
sellChance = 35,
sellAmountRange = {1, 15},
}
local superHardDrugOdds = {
policeCallChance = 0,
robberyChance = 99,
aggroChance = 0,
sellChance = 99,
sellAmountRange = {1, 15},
}
SellableDrugs = {
["meth_bag"] = {
priceRange = {4000, 4100},
odds = superHardDrugOdds,
},
["weed_bag"] = {
priceRange = {3000, 3850},
odds = hardDrugOdds,
},
["cocaine_bag"] = {
priceRange = {4000, 4670},
odds = easyDrugOdds,
},
-- ["joint"] = {
-- priceRange = {1000, 1730},
-- odds = regularDrugOdds,
-- },
}
Last updated