> For the complete documentation index, see [llms.txt](https://dynyx-scripts.gitbook.io/dynyx-scripts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dynyx-scripts.gitbook.io/dynyx-scripts/multi-jobs/installation-and-configuration.md).

# Installation & Configuration

{% stepper %}
{% step %}

### Add the Resource

**Drag the** `dynyx_multijob` **folder into your** `resources` **directory.**\
Make sure it’s correctly placed, then add `ensure dynyx_multijob` to your `server.cfg` to activate the script on server startup.
{% endstep %}

{% step %}

### Install Dependenices

**Ensure all required dependencies are installed and updated.**\
This includes your core framework (e.g., QBCore or QBOX), your inventory system (`ox_inventory`, `qb-inventory`, `ps-inventory`, or `qs-inventory`), and `ox_lib`.
{% endstep %}

{% step %}

### Import the SQL File

**Open your database (e.g., HeidiSQL or phpMyAdmin) and import the provided SQL file.**\
This step adds the necessary table for tracking multiple jobs per player.

> The SQL file is located inside the `dynyx_multijob` folder.
> {% endstep %}

{% step %}

### Configure Inventory Compatibility

**Navigate to the `inventory` folder.**\
You’ll need to follow a specific setup guide based on your inventory system.\
Item images used in the chop shop system can be found inside the `images` folder for easy reference.

* [ox\_inventory](/dynyx-scripts/chop-shop/installation-and-configuration/ox_inventory.md)
* [qb-inventory](/dynyx-scripts/chop-shop/installation-and-configuration/qb-inventory-ps-inventory.md)&#x20;
  {% endstep %}
  {% endstepper %}

## Configuration:

```lua
Config = {}

Config.Inventory = "ox_inventory" -- ox_inventory / qb-inventory / ps-inventory / qs-inventory

Config.MaxJobs = 3

Config.IgnoreJobs = {
    unemployed = true,
}

Config.FontAwesomeIcons = {
    ["ambulance"] = "fa-solid fa-user-doctor",
    ["bus"] = "fa-solid fa-bus",
    ["cardealer"] = "fa-solid fa-cards",
    ["garbage"] = "fa-solid fa-trash-can",
    ["hotdog"] = "fa-solid fa-hotdog",
    ["judge"] = "fa-solid fa-gave",
    ["lawyer"] = "fa-solid fa-gavel",
    ["mechanic"] = "fa-solid fa-wrench",
    ["bennys"] = "fa-solid fa-wrench",
    ["beeker"] = "fa-solid fa-wrench",
    ["police"] = "fa-solid fa-handcuffs",
    ["realestate"] = "fa-solid fa-sign-hanging",
    ["taxi"] = "fa-solid fa-taxi",
}
```


---

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

```
GET https://dynyx-scripts.gitbook.io/dynyx-scripts/multi-jobs/installation-and-configuration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
