Skip to content

Latest commit

 

History

History
52 lines (48 loc) · 2.25 KB

README.md

File metadata and controls

52 lines (48 loc) · 2.25 KB

Zlexif's Ammunations Job. / MADE BY RANJIT AND EDITED AND EVERYTHING BY ZLEXIF

Preview

join my [Discord] https://discord.gg/XAV4AfgQaZ | <-- FOR ANY SUPPORT. AS RANJIT IS NOT RESPONSIBLE FOR SUPPORT ON THIS.

ranjits discord https://discord.gg/867F5AvMCN Check it out. He's got plenty of good scripts!

Required

qb-core/shared/items.lua


## THIS DEPENDS ON QB-WEAPONS DEFAULT.

qb-core/shared/jobs.lua

   ['ammunation'] = {
		label = 'Ammunation',
		defaultDuty = true, -- If whenever you see the job your defaultly on duty
		offDutyPay = false, -- If you want employees to be paid even when theyre not on duty/off duty ( THIS IS IN GAME NOT WHEN YOUR OFFLINE COMPLETELY)
		grades = {
            ['0'] = {
                name = 'Runner', - NAME OF THE GRADE
                payment = 25 -- PAYMENT FOR THIS GRADE ( EVERY 30 MINS OR ACCORDING TO YOUR loops.lua)  -- Configure According To Your Economy
            },
            ['1'] = {
                name = 'Salesman',
                payment = 50, -- Configure According To Your Economy
            },
            ['2'] = {
                name = 'Head Salesman',
                isboss = true,
                payment = 75, -- Configure According To Your Economy
            },
            ['3'] = {
                name = 'Asst. Manager',
                isboss = true,
                payment = 100,
            },
            ['4'] = {
                name = 'Manager',
                isboss = true,
                payment = 200, -- Configure According To Your Economy
            },
        },
	},