Oddities abound. Finally got my proxy running, 'cept divine hare now turns me invisible?? Have the transform/disguise IDs changed?
I use this packet for dh/cyclone and it seems to work ok (stype 0x19) for cyclone but the stype 0x0b is not working.
Code:
class StatusPacket : public Packet
{
public:
StatusPacket()
{
Define(PKT_LENGTH,INT_16);
Define(PKT_TYPE,INT_16);
Define(PKT_PLID,INT_32);
Define(PKT_IPRMS,PRM_REPEAT32);
Define(PKT_STYPE,INT_32);
Define(PKT_SVAL1,INT_64);
Define(PKT_SVAL2,INT_64);
Define(PKT_IPRMSEND,END_REPEAT);
Define(PKT_UNKNOWN3,20);
Define(PKT_TAG,8);
SetInt(PKT_TYPE,0x2721);
}
};