1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-06-29 07:44:06 +02:00
parent 4914f1688a
commit 2ada011b1a
2 changed files with 22 additions and 6 deletions

View file

@ -48,10 +48,21 @@ Config.JobInvoices = {
label = 'Moonlight Cinema', label = 'Moonlight Cinema',
requiredGrade = 0, requiredGrade = 0,
presetInvoices = { presetInvoices = {
{ name = 'Kinoticket', amount = 100, reason = 'Kinoticket' }, { name = 'Kinoticket', amount = 10, reason = 'Kinoticket' },
}
},
['kayas'] = {
label = 'Kayas Restaurant',
requiredGrade = 0,
presetInvoices = {
}
},
['ammu'] = {
label = 'Ammunation',
requiredGrade = 0,
presetInvoices = {
} }
}, },

View file

@ -54,7 +54,8 @@ Config.Societies = { -- Which societies have bank accounts
"kayas", "kayas",
"sud", "sud",
"taxi", "taxi",
"ammu" "ammu",
"marshal"
@ -85,8 +86,8 @@ Config.JobBossRanks = {
specificRanks = {} -- Or you can specify ranks like {3, 4} if needed specificRanks = {} -- Or you can specify ranks like {3, 4} if needed
}, },
["sud"] = { ["sud"] = {
maxRank = true, -- Will automatically detect the highest rank maxRank = false, -- Will automatically detect the highest rank
specificRanks = {} -- Or you can specify ranks like {3, 4} if needed specificRanks = {0} -- Or you can specify ranks like {3, 4} if needed
}, },
["taxi"] = { ["taxi"] = {
maxRank = true, -- Will automatically detect the highest rank maxRank = true, -- Will automatically detect the highest rank
@ -95,7 +96,11 @@ Config.JobBossRanks = {
["ammu"] = { ["ammu"] = {
maxRank = false, -- Will automatically detect the highest rank maxRank = false, -- Will automatically detect the highest rank
specificRanks = {0} -- Or you can specify ranks like {3, 4} if needed specificRanks = {0} -- Or you can specify ranks like {3, 4} if needed
}, },
["marshal"] = {
maxRank = true, -- Will automatically detect the highest rank
specificRanks = {0} -- Or you can specify ranks like {3, 4} if needed
},
-- Add other jobs as needed -- Add other jobs as needed
} }