devtoolsgg.com
Guides
GuidesFiveMFiveMGarry's ModMinecraftShared
FiveMFiveM

Server & infrastructure

  • server.cfg
  • fxmanifest
  • ACE permissions
  • Scaffolder

Frameworks

  • Jobs
  • Items

Gameplay

  • Blips
  • Markers
  • 3D text
  • DiscordDiscord logs

Security

  • Backdoor scanner

Reference lists

  • Blip sprites
  • Markers
  • Checkpoints
  • HUD colours
  • Controls
  • Text formatting
  • Vehicles
  • Ped models
  • Weapons
  • Vehicle colours
  • Radio stations
devtoolsgg.com

Generators for game server owners

Platforms

  • FiveM
  • Garry's Mod
  • Minecraft
  • Shared

Resources

  • Home
  • llms.txt

Social

  • Coming soon.

© 2026 devtoolsgg.com

Not affiliated with, endorsed by or associated with Cfx.re, Rockstar Games, Facepunch Studios, Mojang, Microsoft or Valve. All trademarks belong to their respective owners.

  1. FiveM
  2. Frameworks
  3. Jobs

Job Generator

Create a job with its full grade ladder for Qbox, QBCore or ESX Legacy. Switch framework with the tabs: the same form produces Lua or SQL as needed.

required

Internal id used everywhere in code. Lowercase, no spaces.

required

What players actually see.

optional

Unlocks framework behaviour like dispatch and emergency menus. Leave empty for a civilian job.

optional

ESX only: stops players from taking the job themselves.

optional

Players start their shift as soon as they take the job.

optional

Usually off, otherwise people idle for money.

Grade ladder
#1
required

Rank number. 0 is the lowest and must exist.

required

What players actually see.

optional

Paycheck amount for this rank.

optional

Unlocks the boss menu: hiring, firing and promotions.

optional

Can withdraw from the job's shared account.

#2
#3
#4
#5

Add one row per rank.

qbx_core/shared/jobs.lua
1-- Add this entry to the jobs table in qbx_core/shared/jobs.lua2-- Generated with devtoolsgg.com34    police = {5        label = "Los Santos Police",6        type = "leo",7        defaultDuty = true,8        offDutyPay = false,9        grades = {10            [0] = { name = "Cadet", payment = 50 },11            [1] = { name = "Officer", payment = 75 },12            [2] = { name = "Sergeant", payment = 100 },13            [3] = { name = "Lieutenant", payment = 125 },14            [4] = { name = "Chief", isboss = true, bankAuth = true, payment = 150 },15        },16    },17
lua17 lines, 570 characters

Related tools

Items