Supplies gathering
Supplies
Config.Supplies = { -- Drops that you get from the dokia phone
["meth"] = {
contactName = "Simeon (Meth)", -- Name of the supplier
contactNumber = "+345009466", -- Number of the supplier
price = 5000, -- Price of the drop
voiceLines = { -- Voice lines of the supplier
requesting = { -- Voice lines when you request a drop (you can change or add more in web/public/voice_lines/meth)
"calling1.mp3",
"calling2.mp3",
"calling3.mp3",
-- Add more voice lines if needed
},
waiting = { -- Voice lines when you wait for the drop
"waiting_for_meth_1.mp3",
"waiting_for_meth_2.mp3",
"waiting_for_meth_3.mp3",
-- Add more voice lines if needed
}
},
dropItems = { -- Items that you get from the drop
{name = 'pseudoephedrine', amount = 20}, -- Name of the item and the amount
{name = 'red_phosphorus', amount = 20},
{name = 'hydrochloric_acid', amount = 20},
{name = 'lithium', amount = 20},
{name = 'anhydrous_ammonia', amount = 20},
}
},
["coke"] = {
contactName = "Juan (Coke)",
contactNumber = "+345009466",
price = 5000,
voiceLines = {
requesting = {
"calling1.mp3",
"calling2.mp3",
"calling3.mp3",
"calling4.mp3",
-- Add more voice lines as needed
}
},
dropItems = {
{name = "coca_leaves", amount = 50},
{name = "weapon_petrolcan", amount = 10},
{name = "water_lab_bottle", amount = 10},
}
},
["weed"] = {
contactName = "Davie (Weed)",
contactNumber = "+345009466",
price = 5000,
voiceLines = {
requesting = {
"calling1.mp3",
"calling2.mp3",
"calling3.mp3",
-- Add more voice lines as needed
}
},
dropItems = {
{name = "empty_pot", amount = 30},
{name = "dirt_bag", amount = 30},
{name = "weed_fertilizer", amount = 30},
{name = "weed_whitewidow_seed", amount = 10},
{name = "weed_skunk_seed", amount = 10},
{name = "weed_purplehaze_seed", amount = 10},
{name = "weed_ogkush_seed", amount = 10},
{name = "weed_amnesia_seed", amount = 10},
}
},
["equipment"] = {
contactName = "Daniel (Equipment)",
contactNumber = "+345009466",
price = 0,
voiceLines = {
requesting = {
"calling1.mp3",
"calling2.mp3",
}
},
dropItems = {
}
},
}Drop Configuration
Last updated