PDA

View Full Version : Quick question about Charms and Jewels


Findux
07-10-2008, 00:54
Is the alvl the same as the ilvl for charms and jewels?

Orphan
07-10-2008, 03:30
It is for jewels and for grand charms, but not for large charms and small charms. Large charms have a qlvl of 14, while small charms have a qlvl of 28.

Findux
07-10-2008, 11:52
Okay. Is there any formula how to calculate the alvl of large charms and small charms, or other magic items with qlvl > 1? I guess it isn't the same as for rare/crafted items?

Orphan
07-10-2008, 12:59
There is a formula, and it is the same for rares, crafts, etc. Basically it's:

If (ilvl>99) then {ilvl=99}
if (qlvl>ilvl) then {ilvl=qlvl}
if (magic_lvl>0) then {alvl=ilvl+magic_lvl}
else
{
if (ilvl<(99-qlvl/2))
then {alvl=ilvl-qlvl/2}
else {alvl=2*ilvl-99}
}
If (alvl>99) then {alvl=99}

Only some items have a magic_lvl, such as the circlets, wands and staves.

Findux
07-10-2008, 15:55
Okay, thanks alot for the information. :thumbup: