From b613d90b14ac19fe0c450da7b63375f7913a4428 Mon Sep 17 00:00:00 2001 From: AlexisinGit <136088944+AlexisinGit@users.noreply.github.com> Date: Thu, 28 Aug 2025 18:20:34 +0800 Subject: [PATCH 01/11] Cheat: finish One Invasion Finish The Whole Thing --- src/services/configService.ts | 1 + src/services/missionInventoryUpdateService.ts | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/src/services/configService.ts b/src/services/configService.ts index 75953730..2ede469b 100644 --- a/src/services/configService.ts +++ b/src/services/configService.ts @@ -41,6 +41,7 @@ export interface IConfig extends IConfigRemovedOptions { radiantRelicsAlwaysGiveGoldReward?: boolean; unlockAllSimarisResearchEntries?: boolean; disableDailyTribute?: boolean; + finishOneInvasionFinishTheWholeThing?: boolean; spoofMasteryRank?: number; relicRewardItemCountMultiplier?: number; nightwaveStandingMultiplier?: number; diff --git a/src/services/missionInventoryUpdateService.ts b/src/services/missionInventoryUpdateService.ts index 0ab878b2..6b4ee5d7 100644 --- a/src/services/missionInventoryUpdateService.ts +++ b/src/services/missionInventoryUpdateService.ts @@ -775,6 +775,11 @@ export const addMissionInventoryUpdates = async ( } case "InvasionProgress": { for (const clientProgress of value) { + if (config.finishOneInvasionFinishTheWholeThing) { + clientProgress.Delta *= 3 + clientProgress.AttackerScore *= 3 + clientProgress.DefenderScore *= 3 + } const dbProgress = inventory.QualifyingInvasions.find(x => x.invasionId.equals(clientProgress._id.$oid) ); -- 2.47.2 From 9e622464e06971a27dcce36dad018f5ddac52e6a Mon Sep 17 00:00:00 2001 From: AlexisinGit <136088944+AlexisinGit@users.noreply.github.com> Date: Thu, 28 Aug 2025 18:21:00 +0800 Subject: [PATCH 02/11] Cheat: finish One Invasion Finish The Whole Thing config and webUI checkbox --- config-vanilla.json | 1 + static/webui/index.html | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/config-vanilla.json b/config-vanilla.json index 2d96af5f..91bc52b1 100644 --- a/config-vanilla.json +++ b/config-vanilla.json @@ -30,6 +30,7 @@ "missionsCanGiveAllRelics": false, "unlockAllSimarisResearchEntries": false, "disableDailyTribute": false, + "finishOneInvasionFinishTheWholeThing": false, "spoofMasteryRank": -1, "relicRewardItemCountMultiplier": 1, "nightwaveStandingMultiplier": 1, diff --git a/static/webui/index.html b/static/webui/index.html index 543ffaf9..70e866b8 100644 --- a/static/webui/index.html +++ b/static/webui/index.html @@ -878,6 +878,10 @@ +