diff --git a/resources/[phone]/roadphone/config.lua b/resources/[phone]/roadphone/config.lua index a6e6886cc..4f4bef6a7 100644 --- a/resources/[phone]/roadphone/config.lua +++ b/resources/[phone]/roadphone/config.lua @@ -90,8 +90,8 @@ Config.CameraDelay = 2000 -- Delay between taking pictures -- Taxi Configuration Config.TaxiPrice = 100 -- Price per kilometer -Config.TaxiJob = "cab" -Config.TaxiSociety = "cab" +Config.TaxiJob = "taxi" +Config.TaxiSociety = "taxi" Config.TaxiSocietyEnabled = true --money goes to society account instead of player account -- Rent Configuration diff --git a/resources/[tools]/RxBilling/config.lua b/resources/[tools]/RxBilling/config.lua index 6f38a95bf..fd3932bda 100644 --- a/resources/[tools]/RxBilling/config.lua +++ b/resources/[tools]/RxBilling/config.lua @@ -37,7 +37,7 @@ Config.JobInvoices = { } }, ['taxi'] = { - label = 'Taxi', + label = 'Down Town Cab', requiredGrade = 1, presetInvoices = { { name = 'Taxifahrt', amount = 100, reason = 'Taxifahrt' }, diff --git a/resources/[tools]/okokBanking/config.lua b/resources/[tools]/okokBanking/config.lua index 19d8abdaf..0a9d94a3f 100644 --- a/resources/[tools]/okokBanking/config.lua +++ b/resources/[tools]/okokBanking/config.lua @@ -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 }