diff --git a/resources/[tools]/RxBilling/config.lua b/resources/[tools]/RxBilling/config.lua index fd3932bda..20fbe69da 100644 --- a/resources/[tools]/RxBilling/config.lua +++ b/resources/[tools]/RxBilling/config.lua @@ -48,10 +48,21 @@ Config.JobInvoices = { label = 'Moonlight Cinema', requiredGrade = 0, 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 = { } }, - diff --git a/resources/[tools]/okokBanking/config.lua b/resources/[tools]/okokBanking/config.lua index 0a9d94a3f..d010d614b 100644 --- a/resources/[tools]/okokBanking/config.lua +++ b/resources/[tools]/okokBanking/config.lua @@ -54,7 +54,8 @@ Config.Societies = { -- Which societies have bank accounts "kayas", "sud", "taxi", - "ammu" + "ammu", + "marshal" @@ -85,8 +86,8 @@ Config.JobBossRanks = { 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 + maxRank = false, -- Will automatically detect the highest rank + specificRanks = {0} -- Or you can specify ranks like {3, 4} if needed }, ["taxi"] = { maxRank = true, -- Will automatically detect the highest rank @@ -95,7 +96,11 @@ Config.JobBossRanks = { ["ammu"] = { maxRank = false, -- Will automatically detect the highest rank 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 }