1
0
Fork 0
forked from Simnation/Main

Update config.lua

This commit is contained in:
Nordi98 2025-06-29 07:05:43 +02:00
parent 2c2060cdc6
commit 93eca35471

View file

@ -50,7 +50,9 @@ Config.Societies = { -- Which societies have bank accounts
"police", "police",
"ambulance", "ambulance",
"cinema", "cinema",
"fussiom",
"kayas",
"sud"
@ -68,9 +70,21 @@ Config.JobBossRanks = {
specificRanks = {} specificRanks = {}
}, },
["cinema"] = { ["cinema"] = {
maxRank = false, -- Will automatically detect the highest rank
specificRanks = {0,1} -- Or you can specify ranks like {3, 4} if needed
},
["kayas"] = {
maxRank = true,
specificRanks = {}
},
["fussion"] = {
maxRank = true, -- Will automatically detect the highest rank maxRank = true, -- Will automatically detect the highest rank
specificRanks = {} -- Or you can specify ranks like {3, 4} if needed specificRanks = {} -- Or you can specify ranks like {3, 4} if needed
}, },
["sud"] = {
maxRank = true, -- Will automatically detect the highest rank
specificRanks = {} -- Or you can specify ranks like {3, 4} if needed
},
-- Add other jobs as needed -- Add other jobs as needed
} }