Browse docs
Commands
Shared commands
These commands belong to sky_jobs_base and remain available without Police Job, Ambulance Job,
Mechanic Job, or Fire Job.
| Command | Arguments | Description | Default permission |
|---|---|---|---|
/jobconfig | — | Open the unified Job Configurator. | admin |
/jobconfigimport | resource | Import a resource's local jobs and registered settings into the live configurator runtime. | admin |
/setboss | job grade | Grant every shared boss permission to a job grade. | admin |
/admincuff | playerId cuffType | Force-apply handcuffs or zipties to a player. | admin |
/adminuncuff | playerId | Force-remove handcuffs or zipties from a player. | admin |
/jobs | — | Open the player's multi-job menu. | player |
/givejob | playerId job [grade] | Add or update a job in a player's multi-job list. | admin |
/removejob | playerId job | Remove a job from a player's multi-job list. | admin |
/multijobadmin | playerId [list|add|set|remove] [job] [grade] | Inspect or edit a player's multi-job list. | admin |
Admin restraint commands
Apply handcuffs or zipties without requiring an item, job access, hands-up state, or proximity:
/admincuff 27 handcuffs
/admincuff 27 zipties
Accepted cuff-type values are cuff, cuffs, handcuff, handcuffs, ziptie, and zipties.
The selected restraint system must be enabled, and the target cannot already be restrained.
Use the recovery command when a player remains restrained after an interrupted interaction, disconnect, resource restart, or configuration problem:
/adminuncuff 27
The target must be online. Jobs Base removes either handcuffs or zipties through its authoritative
restraint state, synchronizes the player's framework state, and clears related shared restraint
state. The command does not require sky_policejob.
Configure its allowed groups in:
Config.CommandPermissions = {
admincuff = { "god", "superadmin", "admin" },
adminuncuff = { "god", "superadmin", "admin" },
}
These entries are registered as the sky_jobs_base.admincuff and sky_jobs_base.adminuncuff ACEs.
If a command is omitted from Config.CommandPermissions, only the server console can use it.
sky_jobs_base after changing command permissions so the ACE mappings are registered again.The required ACE bootstrap entries must already be present before ensure sky_base; see the
installation permissions section.