Drop me a PM and when I get back late tonight ~12-14 hours from now I'll hook you up with my C++ hook-based proxy.
(Source included)
You don't really have to do much to log packets except check their type and dump them to the console, lol.
If its a 0x3F9(1017 in dec) packet, it look's like it's probably a status flag (I really don't know, lol), can you provide examples of the unknown fields, or all they all 0?
Offset 8 = The number of 'updates' in the packet. 0x3F9 packets can carry multiple updates . In this case it's one.
Offset 12 = The type of 'update.' Can be HP, MP, Stamina, Mesh, in this case it's Status flag. This is how the client determines what to update.
Offset 16 = The value of the update. In this case it's the statusflag of the entity.
it's 0x800 | 0x20. So the status flag for 'fade' is 0x800 and 0x20 is the 'dead' status.
Offset 8 = The number of 'updates' in the packet. 0x3F9 packets can carry multiple updates . In this case it's one.
Offset 12 = The type of 'update.' Can be HP, MP, Stamina, Mesh, in this case it's Status flag. This is how the client determines what to update.
Offset 16 = The value of the update. In this case it's the statusflag of the entity.
it's 0x800 | 0x20. So the status flag for 'fade' is 0x800 and 0x20 is the 'dead' status.
Great, so by your explanation I have the correct info... why aren't the monsters fading when I send it? My packet looks like this:
data[0] = ToByte(size);
data[1] = ToByte(size, 8);
data[2] = ToByte(type);
data[3] = ToByte(type, 8);
data[4] = ToByte(UID);
data[5] = ToByte(UID, 8);
data[6] = ToByte(UID, 16);
data[7] = ToByte(UID, 24);
data[8] = ToByte(1); // number of updates
data[12] = ToByte(26); // type of update
data[16] = ToByte(2080); // status flag
data[17] = ToByte(2080, 8);
Seal(ref data); // appends TQ seal
I assume he made a typo with the "e" and f" (should be 0x3F9, the packet type that I initially asked about). I understand that fading is a combination of the attack packet (where offset 20 = 14, usually this would be the attack type) and this 0x3F9 packet. I'm not sure where the 2721 comes in though.
Metallica - Fade To Black Cover 05/23/2010 - Music - 2 Replies Hi guys,
me and my friend made a cover of this song on youtube... It's not perfect but we had a lot fun recording it! Hope you like it =)
YouTube - Metallica - Fade To Black Cover
Grtz