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
}