Job integration
Of course, you'll have to add a job for your mechanics. By default, this job is named lscustoms however feel free to change it!
QBCore Installation Guide:
Head to the qb-core/shared/jobs.lua
Add this code snippet between
QBShared.Jobs = {(found at the top of the file) and}(found at the bottom of the file):
['lscustoms'] = {
label = 'LSCustoms Mechanic',
defaultDuty = true,
offDutyPay = false,
grades = {
['0'] = {
name = 'Recruit Mechanic',
payment = 50
},
['1'] = {
name = 'Advanced Mechanic',
payment = 75
},
['2'] = {
name = 'Manager',
isboss = true,
payment = 150
},
},
},The job is now added.
ESX Installation Guide:
Run this SQL query:
The job is now added.
Last updated
Was this helpful?