Craft meth in a van anywhere in around Los Santos. As you are cooking, answer a questionaire. How you answer will dictate the quantity of meth you recieve after your cook. If you are not careful, some of your decisions could result in your meth lab exploding or even you being snitched on. Questionaire Preview
- Preview (Old preview)
• Add ps-dispatch support
• Better questionaire randomization
• Convert default notify to ox_lib notify
🔗 > Samuel's Developments (Original Creator)
🔗 > qb-methcar (Original Repo)
🔗 > Maliwan Developments (Support Discord)
-
Place the qb-methcar folder anywhere into your resources folder and ensure/start it in your server/resources.cfg
-
Add these items to your qb-core/shared/items.lua
["acetone"] = {["name"] = "acetone", ["label"] = "Acetone", ["weight"] = 5000, ["type"] = "item", ["image"] = "acetone.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "It is a colourless, highly volatile and flammable liquid with a characteristic pungent odour."},
["methlab"] = {["name"] = "methlab", ["label"] = "Lab", ["weight"] = 15000, ["type"] = "item", ["image"] = "lab.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A portable Meth Lab"},
["lithium"] = {["name"] = "lithium", ["label"] = "Lithium", ["weight"] = 1000, ["type"] = "item", ["image"] = "lithium.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Lithium, something you can make Meth with!"},
If you are using ox_inventory use these:
['acetone'] = {
label = 'Acetone',
weight = 200,
stack = true,
close = false,
description = "It is a colourless, highly volatile and flammable liquid with a characteristic pungent odour."
},
['lithium'] = {
label = 'Lithium',
weight = 100,
stack = true,
close = false,
description = "Lithium, something you can make Meth with!"
},
['methlab'] = {
label = 'Portable Methlab',
weight = 5000,
stack = true,
close = false,
description = "A portable Meth Lab. marked for Police Seizure"
},
-
You can find the images here
-
Done! :)