Hi
I'm having problems finding all the item attributes in the item info packet. So far this is what I've managed to find.
I am assuming the unknown areas are to do with the temporary attributes from refinery packs etc.. But no matter what I do, when I spoof the packets, I cannot make anything appear on the item when I change them. Any information would be greatly appreciated.
Cheers
Cy'
I'm having problems finding all the item attributes in the item info packet. So far this is what I've managed to find.
Code:
class ItemInfoPacket : public Packet
{
public:
ItemInfoPacket()
{
Define(PKT_LENGTH,INT_16);
Define(PKT_TYPE,INT_16);
Define(PKT_ID,INT_32);
Define(PKT_TYPEID,INT_32);
Define(PKT_DURA,INT_16);
Define(PKT_MAXDURA,INT_16);
Define(PKT_SOURCE,INT_16);
Define(PKT_SLOT,INT_8);
Define(PKT_UNKNOWN1,5);
Define(PKT_SOC1,INT_8);
Define(PKT_SOC2,INT_8);
Define(PKT_UNKNOWN2,7);
Define(PKT_COMP,INT_8);
Define(PKT_BLESS,INT_8);
Define(PKT_BOUND,INT_8);
Define(PKT_ENCHANT,INT_8);
Define(PKT_UNKNOWN3,7);
Define(PKT_SUSPECT,INT_16);
Define(PKT_LOCKED,INT_16);
Define(PKT_COLOR,INT_16);
Define(PKT_UNKNOWN4,INT_16);
Define(PKT_CPROGRESS,INT_32);
Define(PKT_INSCRIBE_GID,INT_32);
Define(PKT_TIMELEFT,INT_32);
Define(PKT_AMOUNT,INT_32);
Define(PKT_TAG,8);
SetInt(PKT_TYPE,0x3f0);
}
};
Cheers
Cy'