ds-milkjob
Advance & Unique Milkjob script and Compatible with any Qbcore and ESX server.

View on Tebex | CFX Fourm Post | Youtube Video | Discord
Installaction
Dependencies
Start
Extract ds-milkjob.
zip
and place it into your resource folder.Install and ensure dependencies for the resource.
Setup
config.lua
(⚠️see #CONFIGURATION for instructions).Add
ensure
ds-milkjob to your server start config (place it anywhere below the dependency & framework resources).
Configuration
Please go through all configurable options & settings in config.lua
and configure them to your server's preferences.
Also please read the comments at the end of each line, for a brief information on what the option does.
Add Items
Open qb-core/shared/items.lua
and add this lines
qb-core/shared/items.lua
and add this lines["milk"] = {
["name"] = "milk",
["label"] = "Milk",
["weight"] = 200,
["type"] = "item",
["image"] = "milk.png",
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Milk"
},
["bucket"] = {
["name"] = "bucket",
["label"] = "Bucket",
["weight"] = 200,
["type"] = "item",
["image"] = "bucket.png",
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bucket"
},
["rope"] = {
["name"] = "rope",
["label"] = "Rope",
["weight"] = 200,
["type"] = "item",
["image"] = "rope.png",
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "rope"
},
Last updated