2026-04-14 17:41:39 +02:00

48 lines
819 B
Markdown

# Jobby App Configuration
This page explains all configuration options for the Jobby (Job Management) app in codem-phone.
---
## Allowed Jobs
```lua
AllowJobs = {
['police'] = true,
['ambulance'] = true,
['mechanic'] = true,
['taxi'] = true,
}
```
Jobs that have access to the Jobby app. Add or remove jobs as needed.
| Key | Value |
|-----|-------|
| Job name | `true` to enable, `false` or remove to disable |
---
## Boss Permissions
### Recruit Players
```lua
BossRecruitPlayer = true
```
Allow boss to recruit/hire new players to the job.
### Fire Players
```lua
BossFirePlayer = true
```
Allow boss to fire players from the job.
---
## Player Permissions
### Quit Job
```lua
QuitJob = true
```
Allow players to quit their job voluntarily.