Estie pointed out some issues with spellbook drop frequency, and there are several options to remedy this. (this is a problem in ironman games).
In this post, I'll look at what wiz-stats currently says about drops. Currently, magic books and priest books are identical as far as drop probabilities so it suffices to look at just one of them.
Let's look at the probabilities of finding each town book if you clear all levels while descending.
more succinctly, we can define the average level you would be expected to find a book, and the standard deviation.
Immediately something jumps out. the stdevs are pretty small. This implies that a lot can be gained by making the books appear a bit earlier. Right now, books appear at levels 5, 10, 20 and 30. Perhaps something like 2, 5, 10, 20 would be a bit more reasonable. (that will be looked at in the next post.)
We should also note that finding one book is not sufficient. This is the probabilities for the 1st book you encounter, when really you need more than one because books get burned. To examine this we can try to find how many books appear per level. I'll look at a couple levels
So it looks like you are likely to get 1 book every 3-4 levels after the point that they fall in depth. (assuming you clear everything of course) Estie's experience was that this was not frequent enough. Changing the depth level will not help with this.
edit: formatting
In this post, I'll look at what wiz-stats currently says about drops. Currently, magic books and priest books are identical as far as drop probabilities so it suffices to look at just one of them.
Let's look at the probabilities of finding each town book if you clear all levels while descending.
Code:
level 5 10 15 20 25 30 mb1 0.26 0.85 0.97 0.99 0.99 0.99 mb2 0.0089 0.20 0.71 0.91 0.98 0.99 mb3 0.0039 0.023 0.045 0.17 0.59 0.85 mb4 0.00 0.012 0.02 0.03 0.092 0.24
Code:
book level stdev mb1 8.2 1.2 mb2 13.6 1.3 mb3 24.8 1.8 mb4 33.8 1.6
We should also note that finding one book is not sufficient. This is the probabilities for the 1st book you encounter, when really you need more than one because books get burned. To examine this we can try to find how many books appear per level. I'll look at a couple levels
Code:
level 10 10floor 20 20floor 30 30floor 40 40floor mb1 0.25 0.16 0.22 0.11 0.28 0.12 0.29 0.10 mb2 0.16 0.15 0.22 0.11 0.23 0.11 0.33 0.10 mb3 0.003 0.02 0.11 0.10 0.19 0.09 0.31 0.08 mb4 0.002 0.002 0.003 0.03 0.12 0.11 0.23 0.09
edit: formatting
Comment