Weapon Racks and Armor Stands


[main] - [other d2 info] - [email]

The game will start with building a list of avalible items. The chance for an item to get on the list is: 1 / (rarity - act number). Act number is act - 1 (so act 1 has 0, act 2 has 1, etc). If rarity - act number is 0 or lower, the item automatically gets on the list. Also, qlvl must be equal or lower than area level - 1 (wich is the ilvl), else the item is skipped. Weapon racks also require that the result of bitfield1 AND 2 will be non-zero. One could just say that the values 0,1,4,5,7,8, and so on will give zero as result. This is to check if the item is of metal. Then the item to drop is chosen randomly from that list.

After this, quality is chosen. The formula is:

chance = 1 / (base - (ilvl - qlvl) / divisor)
Note that ilvl - qlvl has a min cap of 1.

The values to put in are:

Base
QualityNormalUberClass SpecClass spec uber
Unique500500300300
Rare200200150150
Set200200150150
Magic34341717
Superior121299
Normal2121

Divisor
Quality NormalUberClass SpecClass spec uber
Unique1233
Rare2233
Set2233
Magic3366
Superior8888
Normal2121

"Uber" means exceptional or elite. This is also the order that is checked; unique, rare, etc. to normal.

Thanks to Jarulf for pointing out the act number factor in weapon/armor stands, and the bitfield1 limit of weapon racks.