Services App

This guide explains step-by-step how to add new jobs to the Config.JOBServices(config.lua) configuration.

Configuration Parameters

Basic Parameters

  • messageView: Authority to view messages (According to job grade level)

  • messageSend: Authority to send messages (According to job grade level)

  • reportView: Authority to view reports (According to job grade level)

  • reportDeleteAll: Authority to delete all reports (According to job grade level)

  • openClosingAuth: Authority to open/close dispatch (According to job grade level)

  • location: Location of the job center (vector4 format: x, y, z, heading)

  • label: Display name of the job center

  • isOpen: Whether this profession can receive messages and reports while the server is starting up (true/false)

  • canCall: Whether the call option for the job center is enabled (true/false)

  • Duty: Whether the duty option will appear in the Actions section (true/false)

  • playerNotifications: Will the opposing player receive a notification when Review is clicked? (true/false)

  • alternativejobs: Alternative jobs (e.g., ["sheriff"] = true)

  • jobNumber: Job number (e.g., 911 for police, 912 for ambulance)

Billing Parameters

billing = {
    view = 4, -- Authority to view bills
    create = 4, -- Authority to create bills
    delete = 4, -- Authority to delete bills
    pay = 4, -- Authority to pay bills
}

Employee Parameters

employe = {
    view = 2,        -- Authority to view employees
    changeRank = 2,  -- Authority to change ranks
    fire = 2,        -- Authority to fire employees
    add = 2,         -- Authority to add employees
}

Job Balance

  • jobBalanceView: Authority to view the job account balance (According to job grade level)

Steps to Add a New Job

Step 1: Basic Structure

To add a new job, use the following basic structure:

job_name = job code

["job_name"] = {
    -- Parameters go here
},

Step 2: Example Job Addition

["taxi"] = {
    messageView = 1,
    messageSend = 1,
    reportView = 1,
    reportDeleteAll = 3,
    openClosingAuth = 3,
    location = vector4(895.15, -179.36, 74.70, 240.00),
    label = "Taxi Station",
    isOpen = true,
    canCall = true,
    Duty = true,
    playerNotifications = false,
    alternativejobs = {},
    jobNumber = "555",
    billing = {
        view = 1,
        create = 2,
        delete = 3,
        pay = 1,
    },
    employe = {
        view = 2,
        changeRank = 3,
        fire = 3,
        add = 3,
    },
    jobBalanceView = 2
},

Step 3: Setting Location

To set the location, get the coordinates of your position in-game:

  • X coordinate

  • Y coordinate

  • Z coordinate (height)

  • Heading (direction)

Example: vector4(895.15, -179.36, 74.70, 240.00)

Step 4: Authority Levels

Authority levels typically range from 1-4:

  • 1: Lowest rank

  • 2: Medium level

  • 3: High level

  • 4: Highest rank (usually boss/leader)

Important Notes

  1. Job Name: Must match the job name registered in the system (e.g., "police", "ambulance")

  2. Comma Usage: Each parameter line must end with a comma (except the last line)

  3. jobNumber: Can be left empty ("") or assigned a unique number

  4. alternativejobs: Can be left empty ({}) or alternative jobs can be added

Last updated