Sorry, I don't know much about advanced probabilities. I've learned most of what I know in the last few hours. So be gentle.
Essentially, I want to calculate the odds of dropping at least 80 swords in an idle RPG game. We kill 100 monsters per minute, and the drop chance of 1 is 1/20000 (0.005%). So, I want to know what the probability is for at least 80 to drop after 1 day, 10 days, 30 days and 365 days. Any of these will suffice for this question though, just to understand how it works.
As I understand it, 10 days is 1,440,000 trials:
$$10 days \times 24 hours \times 60 minutes \times 100 kills/minute$$
I've tried an online calculator which was limited to 1000 trials, and also manually calculating how likely exactly 80 swords is after 10 days:
$$\frac{n!}{x!\times(n-x)!} \times p^x \times q^{(n-x)}$$
n = number of trials
x = number of successes
p = probability of success in any one trial
q = probability of failure in any one trial (q = 1 - p)
$$\frac{1.44e6!}{80!\cdot(1.44e6-80)!} \times (1/20000)^{80} \times (19999/20000)^{(1.44e6-80)} \approx 2.9\% $$
But how do I find the chance that at least 80 drops will have occurred after $X$ minutes?
Let $X_n$ count the number of collected swords after $n$ minutes.
Note that $X_n$ follows a Binomial Distribution, $X_n\sim B(100n,\frac{1}{20000})$. The formula for calculating when a Binomial is lower or equal than a number is easily defined, so we will use it.
$\begin{align} P(X_n\geq 80)&=1-P(X_n\leq 79)\\ &=1-\sum_{i=0}^{79}\binom{100n}{i}\frac{1}{20000^i}\frac{19999^{n-i}}{20000^{n-i}}\\ &=1-\frac{19999^n}{20000^n}\sum_{i=0}^{79}\binom{100n}{i}\frac{1}{19999^i}\\ &=1-\frac{19999^n}{20000^n}\sum_{i=0}^{79}\frac{100n!}{i!(100n-i)!19999^i} \end{align}$
Now you simply have some calculations to do and a sumatory