In the source that I have the Dura is off, I was told to find another source that was the same patch so I did (6711) Both sources contain
First part is from MsgItemInfo.cs and below is from MsgItemInfoEx.cs
Basically items are showing as 37/35
Code:
public ushort Durability
{
get { return BitConverter.ToUInt16(Buffer, 12); }
set { WriteUInt16(value, 12, Buffer); }
}
public ushort MaximDurability
{
get { return BitConverter.ToUInt16(Buffer, 14); }
set { WriteUInt16(value, 14, Buffer); }
}
Code:
public UInt16 Durability
{
get { return BitConverter.ToUInt16(mData, 24); }
set { Writer.WriteUInt16(value, 24, mData); }
}
public UInt16 MaxDurability
{
get { return BitConverter.ToUInt16(mData, 26); }
set { Writer.WriteUInt16(value, 26, mData); }
}