Old School RuneScape Drop Rate & Probability Calculator

Calculate real odds for Old School RuneScape loot drops over multiple attempts.

Enter an Old School RuneScape drop rate and your number of kills or attempts to compute the true probability of getting the item at least once, plus the kills needed for a chosen confidence level.

How is drop chance over many kills calculated?

Each kill is an independent Bernoulli trial with probability p = 1/rate. The chance of at least one drop in N kills is 1 - (1 - p)^N. The chance of going completely dry is (1 - p)^N.

The Old School RuneScape Drop Rate & Probability Calculator answers the question every grinder asks: “I’ve done X kills at a 1/Y drop — what are my real odds?” It uses the exact independent-trial maths the game’s RNG follows, so the numbers match what you would compute from the OSRS Wiki drop tables.

How it works

Every kill is an independent roll with success probability p = 1 / rate. Over N kills the outcomes follow a binomial process, and the two figures that matter are:

P(at least one drop) = 1 - (1 - p)^N
P(zero drops / dry)  = (1 - p)^N

To find how many kills you need for a confidence level c (say 90%), solve for N:

N = ceil( ln(1 - c) / ln(1 - p) )

Worked example

For a 1/512 drop after 512 kills, p = 1/512 and the chance of at least one drop is 1 - (511/512)^512 ≈ 63.3%. That is why hitting the exact drop rate in kills only gives you roughly a 63% chance — the famous “drop rate ≠ guarantee” rule. To be 99% sure you would need about ceil(ln(0.01)/ln(511/512)) ≈ 2,357 kills.