Add New Job

If you want to add a new profession, please open the `blipsConfig.lua` file.

Adding Job Permission

If you want to add a new job permission to the Jobs section, first put a comma (,) next to the last job permission listed, then move to the next line and write the job permission within single quotes (' ').

blipsConfig.lua (Example)
    Jobs = {
        'police',
        'ambulance',
        'sheriff'
    },

Adding a Blip to the Created Job

First, create a blip with the same name as the job you added to Jobs. Then, simply add the Blips expression.

blipsConfig.lua (Example)
    sheriffBlips = {

        -- Boat Blip Settings
        boatBlip = true,           -- If you do not want the blip to appear on the map, set the value to "false".
        boatBlipColor = 29,        -- Boat Blip Color
        boatBlipScale = 0.8,       -- Boat Blip Scale
        boatBlipIcon = 755,        -- Boat Blip Scale
    
        -- Plane Blip Settings
        planeBlip = true,          -- If you do not want the blip to appear on the map, set the value to "false".
        planeBlipColor = 29,       -- Plane Blip Color
        planeBlipScale = 0.8,      -- Plane Blip Scale
        planeBlipIcon = 16,        -- Plane Blip Scale
    
        -- Helicopter Blip Settings
        heliBlip = true,           -- If you do not want the blip to appear on the map, set the value to "false".
        heliBlipColor = nil,       -- Helicopter Blip Color
        heliBlipScale = 0.6,       -- Helicopter Blip Scale
        heliBlipIcon = 15,         -- Helicopter Blip Scale
    
        -- Military Blip Settings
        militaryBlip = true,       -- If you do not want the blip to appear on the map, set the value to "false".
        militaryBlipColor = 29,    -- Military Blip Color
        militaryBlipScale = 0.8,   -- Military Blip Scale
        militaryBlipIcon = 426,    -- Military Blip Scale
    
        -- Police Siren Blip Settings
        sirenBlip = true,          -- If you do not want the blip to appear on the map, set the value to "false".
        sirenBlipColor = nil,      -- Siren Blip Color
        sirenBlipScale = 0.4,      -- Siren Blip Scale
        sirenBlipIcon = 42,        -- Siren Blip Scale
    
        -- Motorcycle Blip Settings
        motorBlip = true,          -- If you do not want the blip to appear on the map, set the value to "false".
        motorBlipColor = 29,       -- Motorcycle Blip Color
        motorBlipScale = 0.8,      -- Motorcycle Blip Scale
        motorBlipIcon = 522,       -- Motorcycle Blip Scale
    
        -- Parachute Blip Settings
        parachuteBlip = true,      -- If you do not want the blip to appear on the map, set the value to "false".
        parachuteBlipColor = 29,   -- Parachute Blip Color
        parachuteBlipScale = 0.8,  -- Parachute Blip Scale
        parachuteBlipIcon = 94,    -- Parachute Blip Scale
    
        -- Default Settings
        defaultBlipScale = 0.4,    -- Default Blip Scale
        defaultBlipColor = nil,    -- Default Blip Color
        defaultBlipIcon = 41,      -- Default Blip Scale
    },

Last updated