18 lines
760 B
Lua
18 lines
760 B
Lua
return {
|
|
AllowJobs = { -- Jobs that have access to this app/feature
|
|
['police'] = true,
|
|
['ambulance'] = true,
|
|
['mechanic'] = true,
|
|
['taxi'] = true,
|
|
},
|
|
|
|
BossRecruitPlayer = true, -- Allow boss to recruit/hire new players to the job
|
|
BossFirePlayer = true, -- Allow boss to fire players from the job
|
|
QuitJob = true, -- Allow players to quit their job
|
|
|
|
-- Rank Management Settings
|
|
BossCanChangeRanks = true, -- Allow boss to change employee ranks (rank up/down)
|
|
BossCanPromoteToBoss = false, -- Allow boss to give boss permissions to other players (make them boss too)
|
|
BossCanManageOtherBosses = false, -- Allow boss to change/demote other bosses' ranks
|
|
}
|