Hello friends,
Where can I see or understand what grades are there for each job?
For example, police jobs in config.lua : ( recruit - officer - sergeant - intendent - lieutenant - chef - boss )
Or mechanical job or ambulance job and …
in database only this grades for policejob:

1 Like
Open your SQL, in job_grades table.
Yes, I know that the SQL can see the data.

I want to know how can I add other grades?
There are several more SQL content in the config.lua file, but there are only 5 grades in the config.lua : ( recruit - officer - sergeant - lieutenant - boss )

Do I add other grades manually on the SQL? ( intendent - chef )
1 Like
The config is reading from the SQL table, meaning if you add a new row in your SQL for example:
“police” “5” “chief” “Chief” , then it would be available in-game, but the config won’t read it.
The config is only for adding permissions for vehicles and guns based off of how high your job grade is.
also, make sure all the config’s job grades correlate with your SQL job_grades, because “intendent” for example, doesn’t exist in your SQL job_grades table, and should be replaced with something like “sergeant”.
Good luck! 
1 Like