Install Jobs / Items
Through this page you can quickly install the necessary items and jobs on your server
Last updated
Through this page you can quickly install the necessary items and jobs on your server
Last updated
Pıctures / Images
You can follow this file path ( without weapons items ) ⇒ ox_inventory/data/items.lua
["gold_tooth"] = {
label = "Gold Tooth",
weight = 1,
stack = true,
close = false,
},
["dirty_photo"] = {
label = "Dity Photo",
weight = 1,
stack = true,
close = false,
},
["chain"] = {
label = "Chain",
weight = 1,
stack = true,
close = false,
},
["medal"] = {
label = "Medal",
weight = 1,
stack = true,
close = false,
},
["rusted_tin"] = {
label = "Rusted Tin",
weight = 1,
stack = true,
close = false,
},
["nail"] = {
label = "Nail",
weight = 1,
stack = true,
close = false,
},
["ring"] = {
label = "Ring",
weight = 1,
stack = true,
close = false,
},
["vehicle_tyre"] = {
label = "Vehicle Tyre",
weight = 1,
stack = true,
close = false,
},
["vehicle_door"] = {
label = "Vehicle Door",
weight = 1,
stack = true,
close = false,
},
You can follow this file path for weapons ( without normal items ) ⇒ ox_inventory/data/weapons.lua
Weapons = {
-- previous weapons
['WEAPON_ACIDPACKAGE'] = {
label = 'News papaer',
weight = 2500,
durability = 0.05,
ammoname = 'ammo-acid'
},
},
You can follow this file path ⇒ qb-core/shared/items.lua || qbx_core/shared/items.lua
['gold_tooth'] = {['name'] = 'gold_tooth', ['label'] = 'Gold Tooth', ['weight'] = 2, ['type'] = 'item', ['image'] = 'goldtooth.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Gold Tooth'},
['dirty_photo'] = {['name'] = 'dirty_photo', ['label'] = 'Dirty Photo', ['weight'] = 2, ['type'] = 'item', ['image'] = 'dirty_photo.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Dirty Photo'},
['chain'] = {['name'] = 'chain', ['label'] = 'Chain', ['weight'] = 2, ['type'] = 'item', ['image'] = 'chain.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Chain'},
['medal'] = {['name'] = 'medal', ['label'] = 'Medal', ['weight'] = 2, ['type'] = 'item', ['image'] = 'medal.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Medal'},
['rusted_tin'] = {['name'] = 'rusted_tin', ['label'] = 'Rusted Tin', ['weight'] = 2, ['type'] = 'item', ['image'] = 'rusted_tin.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Rusted Tin'},
['nail'] = {['name'] = 'nail', ['label'] = 'Nail', ['weight'] = 2, ['type'] = 'item', ['image'] = 'nail.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Nail'},
['ring'] = {['name'] = 'ring', ['label'] = 'Ring', ['weight'] = 2, ['type'] = 'item', ['image'] = 'Ring.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Ring'},
['vehicle_tyre'] = {['name'] = 'vehicle_tyre', ['label'] = 'Vehicle Tyre', ['weight'] = 2, ['type'] = 'item', ['image'] = 'vehicle_tyre.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Tyre'},
['vehicle_door'] = {['name'] = 'vehicle_door', ['label'] = 'Vehicle Tyre', ['weight'] = 2, ['type'] = 'item', ['image'] = 'vehicle_door.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Door'},
Then go to the specified file path and add this weapon. ⇒ qb-core/shared/weapons.lua
['weapon_acidpackage'] = {['name'] = 'weapon_acidpackage', ['label'] = 'News Paper', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'ammo-acid', ['image'] = 'weapon_acidpackage.png', ['unique'] = true, ['useable'] = true, ['description'] = 'News paper'},
You can follow this file path ⇒ qb-core/shared/jobs.lua || qbx_core/shared/jobs.lua
["pizza_delivery"] = {
label = "Pizza Delivery",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Courier",
payment = 0,
},
}
},
["news_delivery"] = {
label = "News Delivery",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Courier",
payment = 0,
},
}
},
["mobile_hotdog"] = {
label = "Mobile Hotdog",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Seller",
payment = 0,
},
}
},
["forklifter"] = {
label = "Forklifter",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Operator",
payment = 0,
},
}
},
["gardener"] = {
label = "Gardener",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Bahcivan",
payment = 0,
},
}
},
["trucker"] = {
label = "Trucker",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Operator",
payment = 0,
},
}
},
["roadhelper"] = {
label = "Roadhelper",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Operator",
payment = 0,
},
}
},
["bus_driver"] = {
label = "Bus Driver",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Driver",
payment = 0,
},
}
},
["fire_department"] = {
label = "Fire Department",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Fireman",
payment = 0,
},
}
},
["hunter"] = {
label = "Hunter",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Hunter",
payment = 0,
},
}
},
["detectorist"] = {
label = "Metal Detectorist",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Employee",
payment = 0,
},
}
},
["project_car"] = {
label = "Project Car",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Engineer",
payment = 0,
},
}
},
["diver"] = {
label = "Diver",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Employee",
payment = 0,
},
}
},
["farmer"] = {
label = "Farmer",
defaultDuty = true,
offDutyPay = true,
grades = {
[0] = {
name = "Employee",
payment = 0,
},
}
},
By reading the SQL File below with ‘phpmyadmin’ or ‘HeidiSQL’ , you install the necessary contents of the jobs on your server.
🥳🥳Now you have installed the necessary ‘items’ and ‘’jobs‘’ for the jobpack to work on your server.
🤔 You can learn the development part of the jobs by moving to the next step.