Loot Drop Probability Calculator
Find out the cumulative probability of obtaining a specific item after a given number of attempts at a known drop rate. Perfect for gamers grinding rare drops who want to know their realistic odds before committing time.
About this calculator
Each loot attempt is an independent Bernoulli trial — the item either drops or it does not, with a fixed probability each time. The cumulative probability of getting at least one drop in N attempts is calculated using the complement rule: P = (1 − (1 − dropRate/100)^attempts) × 100. Instead of summing all scenarios where the item drops exactly once, twice, etc., it is simpler to compute the probability of never getting the item — (1 − p)^N — and subtract it from 1. A 1% drop rate does not mean you are guaranteed the item in 100 tries; the actual probability after 100 attempts is 1 − 0.99^100 ≈ 63.4%. This formula applies to any game with static, independent drop chances, from MMO rare mounts to battle royale crate drops.
How to use
Suppose a rare sword has a 2% drop rate and you plan to run the dungeon 50 times. Step 1: Convert drop rate to decimal — 2 / 100 = 0.02. Step 2: Compute the probability of never getting it — (1 − 0.02)^50 = 0.98^50 ≈ 0.3642. Step 3: Subtract from 1 and convert to percentage — (1 − 0.3642) × 100 ≈ 63.6%. After 50 attempts, you have roughly a 63.6% chance of having seen the item drop at least once. You would need about 114 attempts to reach a 90% cumulative probability.
Frequently asked questions
How many attempts do I need to have a 90% chance of getting a rare drop?
To find the number of attempts N required for a target probability P, rearrange the formula: N = log(1 − P/100) / log(1 − dropRate/100). For a 1% drop rate and a 90% target, N = log(0.10) / log(0.99) ≈ 229 attempts. This is often called the 'bad luck threshold' and is much higher than intuition suggests. Many games implement pity systems precisely because players expect 1/dropRate attempts to guarantee the item, which statistically only gives about a 63% chance.
Why doesn't a 1% drop rate guarantee an item in 100 attempts?
Each attempt is independent, meaning the game has no memory of your previous failures. The probability of failing 100 consecutive 1%-chance events is 0.99^100 ≈ 36.6%, so there is still a roughly 1-in-3 chance you walk away empty-handed. This counterintuitive result stems from the multiplicative nature of independent probabilities. It is why many modern games add pity mechanics — guaranteed drops after a certain number of failed attempts — to reduce frustrating streaks of bad luck.
What is the difference between drop rate and drop probability after multiple attempts?
Drop rate refers to the per-attempt chance of an item appearing, often expressed as a percentage or ratio like 1/500. Drop probability after multiple attempts is the cumulative likelihood of seeing that item at least once across all your runs, which grows with each attempt but never quite reaches 100%. For example, a 0.2% drop rate gives only a 18.1% cumulative probability after 100 attempts. Understanding this distinction helps set realistic grinding expectations and decide when to pursue alternative acquisition methods like trading or crafting.