This commit is contained in:
Nordi98 2025-06-29 07:41:19 +02:00
parent 49a2a3fbbe
commit 4914f1688a
3 changed files with 18 additions and 7 deletions

View file

@ -52,7 +52,10 @@ Config.Societies = { -- Which societies have bank accounts
"cinema",
"fussiom",
"kayas",
"sud"
"sud",
"taxi",
"ammu"
@ -74,8 +77,8 @@ Config.JobBossRanks = {
specificRanks = {1} -- Or you can specify ranks like {3, 4} if needed
},
["kayas"] = {
maxRank = true,
specificRanks = {}
maxRank = false,
specificRanks = {0}
},
["fussion"] = {
maxRank = true, -- Will automatically detect the highest rank
@ -84,7 +87,15 @@ Config.JobBossRanks = {
["sud"] = {
maxRank = true, -- Will automatically detect the highest rank
specificRanks = {} -- Or you can specify ranks like {3, 4} if needed
},
},
["taxi"] = {
maxRank = true, -- Will automatically detect the highest rank
specificRanks = {} -- Or you can specify ranks like {3, 4} if needed
},
["ammu"] = {
maxRank = false, -- Will automatically detect the highest rank
specificRanks = {0} -- Or you can specify ranks like {3, 4} if needed
},
-- Add other jobs as needed
}