From e1bf7cdfdfa82a34d0cbb4befaf8b87337388e1e Mon Sep 17 00:00:00 2001 From: Animan8000 Date: Fri, 31 Oct 2025 07:48:21 -0700 Subject: [PATCH 1/3] src/controllers/custom/completeAllMissionsController.ts aktualisiert --- src/controllers/custom/completeAllMissionsController.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/controllers/custom/completeAllMissionsController.ts b/src/controllers/custom/completeAllMissionsController.ts index e56a6780..e33d0861 100644 --- a/src/controllers/custom/completeAllMissionsController.ts +++ b/src/controllers/custom/completeAllMissionsController.ts @@ -36,6 +36,11 @@ export const completeAllMissionsController: RequestHandler = async (req, res) => } addString(inventory.NodeIntrosCompleted, "TeshinHardModeUnlocked"); addString(inventory.NodeIntrosCompleted, "CetusSyndicate_IntroJob"); + let syndicate = inventory.Affiliations.find(x => x.Tag == "CetusSyndicate"); + if (!syndicate) { + syndicate = + inventory.Affiliations[inventory.Affiliations.push({ Tag: "CetusSyndicate", Standing: 200, Title: 0 })]; // Getting standing avoids Konzu's "prove yourself" text. 200 is identical to newbie bounty + } await inventory.save(); res.end(); }; -- 2.47.2 From c0c3fae6b26f20dae32738fedfd38d472e2df58d Mon Sep 17 00:00:00 2001 From: Animan8000 Date: Fri, 31 Oct 2025 09:38:57 -0700 Subject: [PATCH 2/3] Changing from 200 to 250 --- src/controllers/custom/completeAllMissionsController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/custom/completeAllMissionsController.ts b/src/controllers/custom/completeAllMissionsController.ts index e33d0861..afd743a9 100644 --- a/src/controllers/custom/completeAllMissionsController.ts +++ b/src/controllers/custom/completeAllMissionsController.ts @@ -39,7 +39,7 @@ export const completeAllMissionsController: RequestHandler = async (req, res) => let syndicate = inventory.Affiliations.find(x => x.Tag == "CetusSyndicate"); if (!syndicate) { syndicate = - inventory.Affiliations[inventory.Affiliations.push({ Tag: "CetusSyndicate", Standing: 200, Title: 0 })]; // Getting standing avoids Konzu's "prove yourself" text. 200 is identical to newbie bounty + inventory.Affiliations[inventory.Affiliations.push({ Tag: "CetusSyndicate", Standing: 250, Title: 0 })]; // Getting standing avoids Konzu's "prove yourself" text. 250 is identical to newbie bounty + bonus } await inventory.save(); res.end(); -- 2.47.2 From 9adde599b63c7801e6580a4ace8627ab2bbff6c3 Mon Sep 17 00:00:00 2001 From: Animan8000 Date: Fri, 31 Oct 2025 11:38:04 -0700 Subject: [PATCH 3/3] Update info --- src/controllers/custom/completeAllMissionsController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/custom/completeAllMissionsController.ts b/src/controllers/custom/completeAllMissionsController.ts index afd743a9..b15d3010 100644 --- a/src/controllers/custom/completeAllMissionsController.ts +++ b/src/controllers/custom/completeAllMissionsController.ts @@ -39,7 +39,7 @@ export const completeAllMissionsController: RequestHandler = async (req, res) => let syndicate = inventory.Affiliations.find(x => x.Tag == "CetusSyndicate"); if (!syndicate) { syndicate = - inventory.Affiliations[inventory.Affiliations.push({ Tag: "CetusSyndicate", Standing: 250, Title: 0 })]; // Getting standing avoids Konzu's "prove yourself" text. 250 is identical to newbie bounty + bonus + inventory.Affiliations[inventory.Affiliations.push({ Tag: "CetusSyndicate", Standing: 250, Title: 0 })]; // Non-zero standing avoids Konzu's "prove yourself" text. 250 is identical to newbie bounty + bonus } await inventory.save(); res.end(); -- 2.47.2