Item Quality Source 5685

04/06/2013 14:24 donjwan3#1
how to know item quality ??? i want to know if the item is ( super , elite , uniq , ref , normal ). any suggestion
04/06/2013 14:45 shadowman123#2
yea byte ItemQuality = ItemID % 10;

if (ItemQuality == 9) then the item is SUper and if its = 8 then its elite .. anyways there is Enum for it

PHP Code:
public enum ItemQuality byte
        
{
            
Fixed 0,
            
Normal 2,
            
NormalV1 3,
            
NormalV2 4,
            
NormalV3 5,
            
Refined 6,
            
Unique 7,
            
Elite 8,
            
Super 9,
            
Other 1