Item Quality Value For Bound

09/02/2011 17:50 HerpDerpNigga#1
Hey does anyone know the value for bound/free item like:

Code:
public enum ItemQuality : byte
        {
            Fixed = 0,
            Normal = 2,
            NormalV1 = 3,
            NormalV2 = 4,
            NormalV3 = 5,
            Refined = 6,
            Unique = 7,
            Elite = 8,
            Super = 9,
            [B][COLOR="Red"]Bound = ?[/COLOR][/B]
            Other = 1
        }
What value is for bound/free item? it can be any value I want?
09/02/2011 18:22 CptSky#2
Quote:
Originally Posted by HerpDerpNigga View Post
Hey does anyone know the value for bound/free item like:

Code:
public enum ItemQuality : byte
        {
            Fixed = 0,
            Normal = 2,
            NormalV1 = 3,
            NormalV2 = 4,
            NormalV3 = 5,
            Refined = 6,
            Unique = 7,
            Elite = 8,
            Super = 9,
            [B][COLOR="Red"]Bound = ?[/COLOR][/B]
            Other = 1
        }
What value is for bound/free item? it can be any value I want?
Free isn't a quality. It's an additionnal information.
09/02/2011 18:25 HerpDerpNigga#3
Quote:
Originally Posted by CptSky View Post
Free isn't a quality. It's an additionnal information.
Thank you.
09/03/2011 05:50 { Angelius }#4
a little more help its a byte value ItemInfo packet (1008) offset 35.

Good luck,