Deimos Bounties using wrong reward tables #1700

Closed
opened 2025-04-17 08:46:10 -07:00 by VampireKitten · 6 comments
Contributor

As you can see in the Last Mission Results, I obtained 5 Mother Tokens, having only done the Isolation Vault Tier 1 bounty in that session:
image.png

However, it should have rewarded 10 tokens instead:
image.png

I also noticed that it used TierATableARewards instead of VaultBountyTierATable${vaultTable}Rewards, which I'm unsure if it's because the optional objective of the Vault isn't implemented yet or if the bounty making service isn't generating correctly.

As you can see in the Last Mission Results, I obtained 5 Mother Tokens, having only done the Isolation Vault Tier 1 bounty in that session: ![image.png](/attachments/30752bc3-ba8b-404a-b914-3add109d7375) However, it should have rewarded 10 tokens instead: ![image.png](/attachments/63e4d671-da2b-4c40-a0a4-c1eecdba5b5f) I also noticed that it used `TierATableARewards` instead of `VaultBountyTierATable${vaultTable}Rewards`, which I'm unsure if it's because the optional objective of the Vault isn't implemented yet or if the bounty making service isn't generating correctly.
Author
Contributor

Isolation Vault Tier 2, meanwhile, rewarded 12 tokens:
image.png

Instead of 15:
image.png

As well as using TierCTableARewards instead of VaultBountyTierBTable${vaultTable}Rewards.

I presume the issue is that since JobTier for the Isolation Vaults are 0, 1 and (presumably) 2, instead of 7/8/9, the worldStateService is passing the wrong reward data to the server on mission completion.

Isolation Vault Tier 2, meanwhile, rewarded 12 tokens: ![image.png](/attachments/dd038d5b-621f-4ea2-b1ac-dc620df6057a) Instead of 15: ![image.png](/attachments/845c3ea5-d3bd-4ff2-a039-d01e7005e45d) As well as using `TierCTableARewards` instead of `VaultBountyTierBTable${vaultTable}Rewards`. I presume the issue is that since JobTier for the Isolation Vaults are 0, 1 and (presumably) 2, instead of 7/8/9, the worldStateService is passing the wrong reward data to the server on mission completion.
Sainan added the
bug
label 2025-04-17 09:15:50 -07:00
VampireKitten changed title from Deimos Isolation Vault rewarding wrong amount of Mother Tokens to Deimos Bounties using wrong reward tables 2025-04-17 09:16:24 -07:00
Author
Contributor

I have also realized that the tier 2 Bounties, the level 15-25 non-endless one, use instead the reward table for endless, as the rewards they're meant to give:
image.png
image.png

Were not the rewards even being rolled:

2025-04-17T18:14:59:614 [0.1.0] debug:  random mission drops: {
  '0': {
    StoreItem: '/Lotus/StoreItems/Upgrades/Mods/FusionBundles/UncommonFusionBundle',
    ItemCount: 5
  },
  '1': {
    StoreItem: '/Lotus/StoreItems/Types/Items/FusionTreasures/OroFusexOrnamentB',
    ItemCount: 1
  }
}

As those are instead the rewards for Endless:
image.png
image.png

I have also realized that the tier 2 Bounties, the level 15-25 non-endless one, use instead the reward table for endless, as the rewards they're meant to give: ![image.png](/attachments/62a3640c-6f46-411c-a867-4afc61553d29) ![image.png](/attachments/7feae00e-62f4-4112-b16a-ddcd22e1b28f) Were not the rewards even being rolled: ``` 2025-04-17T18:14:59:614 [0.1.0] debug: random mission drops: { '0': { StoreItem: '/Lotus/StoreItems/Upgrades/Mods/FusionBundles/UncommonFusionBundle', ItemCount: 5 }, '1': { StoreItem: '/Lotus/StoreItems/Types/Items/FusionTreasures/OroFusexOrnamentB', ItemCount: 1 } } ``` As those are instead the rewards for Endless: ![image.png](/attachments/eb9c7b78-75c0-47f0-865a-161af8f5819b) ![image.png](/attachments/bf344bb0-9b91-4f88-ba99-ad7d4292b317)
Author
Contributor

Endless does indeed possess the non-endless Reward Table.

2025-04-17T18:25:22:147 [0.1.0] debug:  mission report: {
  crossPlaySetting: 'ENABLED',
  RewardInfo: {
    EOM_AFK: 0,
    node: 'SolNode229',
    JobTier: -7,
    jobId: '/Lotus/Types/Gameplay/InfestedMicroplanet/Jobs/DeimosEndlessAreaDefenseBounty_-7_DeimosHub_680117700000000000000002',
    JobStage: 0,
    Q: true,
    CheckpointCounter: 1
  },
2025-04-17T18:25:22:247 [0.1.0] debug:  generating random mission rewards {
  rewardManifests: [
    '/Lotus/Types/Game/MissionDecks/DeimosMissionRewards/TierBTableARewards'
  ],
  rotations: [ 0 ]
}
2025-04-17T18:25:22:248 [0.1.0] debug:  random mission drops: {
  '0': {
    StoreItem: '/Lotus/StoreItems/Upgrades/Focus/AttackLens',
    ItemCount: 1
  }
}
2025-04-17T18:25:22:252 [0.1.0] debug:  levelCreditReward 900
2025-04-17T18:25:22:252 [0.1.0] debug:  handling acquision of /Lotus/StoreItems/Upgrades/Focus/AttackLens
2025-04-17T18:25:22:254 [0.1.0] debug:  store category Upgrades
2025-04-17T18:25:22:532 [0.1.0] http:   POST /api/missionInventoryUpdate.php?accountId=67bcb55f31fac393062d59a0&nonce=2260230564848694&ct=MSI&xpBasedLevelCapDisabled=1 200 383.510 ms - 1849895
Endless does indeed possess the non-endless Reward Table. ``` 2025-04-17T18:25:22:147 [0.1.0] debug: mission report: { crossPlaySetting: 'ENABLED', RewardInfo: { EOM_AFK: 0, node: 'SolNode229', JobTier: -7, jobId: '/Lotus/Types/Gameplay/InfestedMicroplanet/Jobs/DeimosEndlessAreaDefenseBounty_-7_DeimosHub_680117700000000000000002', JobStage: 0, Q: true, CheckpointCounter: 1 }, ``` ``` 2025-04-17T18:25:22:247 [0.1.0] debug: generating random mission rewards { rewardManifests: [ '/Lotus/Types/Game/MissionDecks/DeimosMissionRewards/TierBTableARewards' ], rotations: [ 0 ] } 2025-04-17T18:25:22:248 [0.1.0] debug: random mission drops: { '0': { StoreItem: '/Lotus/StoreItems/Upgrades/Focus/AttackLens', ItemCount: 1 } } 2025-04-17T18:25:22:252 [0.1.0] debug: levelCreditReward 900 2025-04-17T18:25:22:252 [0.1.0] debug: handling acquision of /Lotus/StoreItems/Upgrades/Focus/AttackLens 2025-04-17T18:25:22:254 [0.1.0] debug: store category Upgrades 2025-04-17T18:25:22:532 [0.1.0] http: POST /api/missionInventoryUpdate.php?accountId=67bcb55f31fac393062d59a0&nonce=2260230564848694&ct=MSI&xpBasedLevelCapDisabled=1 200 383.510 ms - 1849895 ```
Owner

Isolation vault bounties are unimplemented, so duplicate of #388.

Isolation vault bounties are unimplemented, so duplicate of #388.
Author
Contributor

Isolation vault bounties are unimplemented, so duplicate of #388.

What about the wrong reward tables for the non-Isolation-Vault bounties, specifically the level 15-25 one and the Endless one?

> Isolation vault bounties are unimplemented, so duplicate of #388. What about the wrong reward tables for the non-Isolation-Vault bounties, specifically the level 15-25 one and the Endless one?
Owner

Sounds like the kind of issue that will magically fix itself

Sounds like the kind of issue that will magically fix itself
Sign in to join this conversation.
No description provided.