Cheat: finish One Invasion Finish The Whole Thing
This commit is contained in:
parent
1439fdc083
commit
b613d90b14
@ -41,6 +41,7 @@ export interface IConfig extends IConfigRemovedOptions {
|
||||
radiantRelicsAlwaysGiveGoldReward?: boolean;
|
||||
unlockAllSimarisResearchEntries?: boolean;
|
||||
disableDailyTribute?: boolean;
|
||||
finishOneInvasionFinishTheWholeThing?: boolean;
|
||||
spoofMasteryRank?: number;
|
||||
relicRewardItemCountMultiplier?: number;
|
||||
nightwaveStandingMultiplier?: number;
|
||||
|
||||
@ -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)
|
||||
);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user