πŸͺ›Installation & Configuration

1

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.

2

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.

3

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.

4

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.

Configuration:

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",
}

Last updated