Guides
Add Boss Menus for new Jobs
Open your
config.luafile where the job coordinates are defined.Locate the
Config.JobCoordssection. 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 }, }To add a new location for a different job, copy the structure inside the
Config.JobCoordstable and modify it according to your requirements. For example, to add a new location for theambulancejob, 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 }, }Save your changes to the
config.luafile.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