1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-06-29 07:52:51 +02:00
parent 2ada011b1a
commit 5f8813b303
3 changed files with 21 additions and 5 deletions

View file

@ -150,10 +150,10 @@ JobCalls.Positions = {
} }
}, },
{ {
name = "coffe_cute", name = "Cute",
coords = vector3(-293.9437, -76.8990, 49.5045), coords = vector3(-293.9437, -76.8990, 49.5045),
number = 5557185, number = 5557185,
needjob = "coffe_cute", needjob = "cute",
useMarker = true, useMarker = true,
marker = { marker = {
drawDistance = 10.0, drawDistance = 10.0,

View file

@ -63,7 +63,18 @@ Config.JobInvoices = {
presetInvoices = { presetInvoices = {
} }
}, },
['sud'] = {
label = 'Santoro Unlimited',
requiredGrade = 0,
presetInvoices = {
}
},
['cute'] = {
label = 'Coffe Cute',
requiredGrade = 0,
presetInvoices = {
}
},
} }

View file

@ -55,7 +55,8 @@ Config.Societies = { -- Which societies have bank accounts
"sud", "sud",
"taxi", "taxi",
"ammu", "ammu",
"marshal" "marshal";
"cute"
@ -100,7 +101,11 @@ Config.JobBossRanks = {
["marshal"] = { ["marshal"] = {
maxRank = true, -- Will automatically detect the highest rank maxRank = true, -- 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
}, },
["cute"] = {
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
} }