forked from Simnation/Main
fixes
This commit is contained in:
parent
49a2a3fbbe
commit
4914f1688a
3 changed files with 18 additions and 7 deletions
|
@ -90,8 +90,8 @@ Config.CameraDelay = 2000 -- Delay between taking pictures
|
||||||
|
|
||||||
-- Taxi Configuration
|
-- Taxi Configuration
|
||||||
Config.TaxiPrice = 100 -- Price per kilometer
|
Config.TaxiPrice = 100 -- Price per kilometer
|
||||||
Config.TaxiJob = "cab"
|
Config.TaxiJob = "taxi"
|
||||||
Config.TaxiSociety = "cab"
|
Config.TaxiSociety = "taxi"
|
||||||
Config.TaxiSocietyEnabled = true --money goes to society account instead of player account
|
Config.TaxiSocietyEnabled = true --money goes to society account instead of player account
|
||||||
|
|
||||||
-- Rent Configuration
|
-- Rent Configuration
|
||||||
|
|
|
@ -37,7 +37,7 @@ Config.JobInvoices = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
['taxi'] = {
|
['taxi'] = {
|
||||||
label = 'Taxi',
|
label = 'Down Town Cab',
|
||||||
requiredGrade = 1,
|
requiredGrade = 1,
|
||||||
presetInvoices = {
|
presetInvoices = {
|
||||||
{ name = 'Taxifahrt', amount = 100, reason = 'Taxifahrt' },
|
{ name = 'Taxifahrt', amount = 100, reason = 'Taxifahrt' },
|
||||||
|
|
|
@ -52,7 +52,10 @@ Config.Societies = { -- Which societies have bank accounts
|
||||||
"cinema",
|
"cinema",
|
||||||
"fussiom",
|
"fussiom",
|
||||||
"kayas",
|
"kayas",
|
||||||
"sud"
|
"sud",
|
||||||
|
"taxi",
|
||||||
|
"ammu"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -74,8 +77,8 @@ Config.JobBossRanks = {
|
||||||
specificRanks = {1} -- Or you can specify ranks like {3, 4} if needed
|
specificRanks = {1} -- Or you can specify ranks like {3, 4} if needed
|
||||||
},
|
},
|
||||||
["kayas"] = {
|
["kayas"] = {
|
||||||
maxRank = true,
|
maxRank = false,
|
||||||
specificRanks = {}
|
specificRanks = {0}
|
||||||
},
|
},
|
||||||
["fussion"] = {
|
["fussion"] = {
|
||||||
maxRank = true, -- Will automatically detect the highest rank
|
maxRank = true, -- Will automatically detect the highest rank
|
||||||
|
@ -84,7 +87,15 @@ Config.JobBossRanks = {
|
||||||
["sud"] = {
|
["sud"] = {
|
||||||
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
|
||||||
},
|
},
|
||||||
|
["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
|
-- Add other jobs as needed
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue