Hello! I recently got the AV Business script add on for its functionality for the business owners within my city. In the example video on YouTube I saw other businesses that were added on like UWU Cafe, and Up-N-Atom which aren’t in my game OR my business menu I was wondering if anyone knew how to add a NEW Custom Business to the Admin Panel, I’ve been looking in every file and i don’t see anything regarding the set Businesses on the APP in game.strong text
Go to QB-core/shared/jobs.lua
then use this format
},
uwu = {
label = ‘UWU Cat Cafe’,
defaultDuty = true,
offDutyPay = false,
grades = {
[‘0’] = { name = ‘New Hire’, payment = 50 },
[‘1’] = { name = ‘Cook’, payment = 75 },
[‘2’] = { name = ‘Shift Lead’, payment = 100 },
[‘3’] = { name = ‘Supervisor’, payment = 125 },
[‘4’] = { name = ‘Manager’, isboss = true, payment = 150 },
},