Omni Ammo Box might not drop from Capture missions (needs confirmation) #1867

Closed
opened 2025-04-26 06:22:15 -07:00 by Animan8000 · 2 comments
Contributor

For more information and where they can drop at: https://wiki.warframe.com/w/Omni_Ammo_Box

At least I personally since I played on Emu, have never gotten any Omni Ammo Box so far. Might be worth to double check whether they can drop at all, before this might get forgotten. Has unfortunately also a really low drop chance.

For more information and where they can drop at: https://wiki.warframe.com/w/Omni_Ammo_Box At least I personally since I played on Emu, have never gotten any Omni Ammo Box so far. Might be worth to double check whether they can drop at all, before this might get forgotten. Has unfortunately also a really low drop chance.
Owner

No way, super unlikely event has never happened to you, so you reckon it's impossible?

No way, *super unlikely event* has never happened to you, so you reckon it's impossible?
Owner

If you want to convince yourself it's definitely possible, here:

const pool = ExportRewards["/Lotus/Types/Game/MissionDecks/CaptureMissionRewardsA"][0];
for (let i = 0; true; ++i) {
    const rng = new SRng(generateRewardSeed());
    const res = rng.randomReward(pool as IRngResult[])!;
    if (res.type == "/Lotus/StoreItems/Types/Restoratives/SelfOmniAmmo") {
        console.log(i);
        break;
    }
}

Only took 167 iterations for me!

If you want to convince yourself it's *definitely possible*, here: ```ts const pool = ExportRewards["/Lotus/Types/Game/MissionDecks/CaptureMissionRewardsA"][0]; for (let i = 0; true; ++i) { const rng = new SRng(generateRewardSeed()); const res = rng.randomReward(pool as IRngResult[])!; if (res.type == "/Lotus/StoreItems/Types/Restoratives/SelfOmniAmmo") { console.log(i); break; } } ``` Only took 167 iterations for me!
Sign in to join this conversation.
No description provided.