> For the complete documentation index, see [llms.txt](https://kirep-studios.gitbook.io/kirep-studios/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kirep-studios.gitbook.io/kirep-studios/scripts/kirep-gps/add-new-job.md).

# Add New Job

## 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 (' ').

{% code title="blipsConfig.lua (Example)" %}

```lua
    Jobs = {
        'police',
        'ambulance',
        'sheriff'
    },
```

{% endcode %}

## 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.

{% code title="blipsConfig.lua (Example)" %}

```lua
    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
    },
```

{% endcode %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://kirep-studios.gitbook.io/kirep-studios/scripts/kirep-gps/add-new-job.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
