Guides

Add Boss Menus for new Jobs

  1. Open your config.lua file where the job coordinates are defined.

  2. Locate the Config.JobCoords section. It should look something like this:

    Config.JobCoords = {
        ['police'] = { -- Job Name
            coords = vector3(448.0459, -973.4677, 30.6896), -- Menu Location
            requiredRank = 4, -- Required Rank to open it
        },
    }
  3. To add a new location for a different job, copy the structure inside the Config.JobCoords table and modify it according to your requirements. For example, to add a new location for the ambulance job, you would add:

    Config.JobCoords = {
        ['police'] = { -- Job Name
            coords = vector3(448.0459, -973.4677, 30.6896), -- Menu Location
            requiredRank = 4, -- Required Rank to open it
        },
        ['ambulance'] = { -- New Job Name
            coords = vector3(310.789, -592.752, 43.284), -- New Menu Location
            requiredRank = 3, -- Required Rank to open it
        },
    }
  4. Save your changes to the config.lua file.

  5. Restart your server or resource to apply the changes.

Now, the Boss Menu will have a new location for the ambulance job with the specified coordinates and required rank to access it. You can repeat these steps to add more locations for any other jobs as needed.

Last updated