Supplies gathering
For each drug you need some initial material in order to producing. You can get these supplies by using the drug and calling the corresponding number. Then, you will receive a location where a plane will drop the supplies in a random location.
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
Config.Drops = { -- Random drops locations for the supplies (feel free to change or add more)
Pos = {
vector4(-1040.53, -2378.76, 28.5, 327.96),
vector4(-1309.27, -3379.72, 29.52, 332.13),
vector4(-722.46, -2509.97, 23.43, 59.53),
vector4(-1158.66, -2039.68, 13.22, 137.96),
...
},
TimeToDrop = 5000, -- Time to wait after showing area to drop
TimeAfterDespawn= 300000, -- Time to remove drop if not opened
TimeToShowArea = 1000*10, -- Time to wait before revealing drop zone
TimeToOpen = { -- Time that will take to open the drop case
Normal = 10000, -- Time if you're the drop owner
Stolen = 50000 -- Time if you're stealing the drop
}
}
Last updated