Game Updates packet from 5375 version to 5517

01/07/2021 19:21 diedwarrior#1
Hello everybody,

Hope you're doing well, are there any 5517 sources with game updates pop up working or any one managed to do it on that version?

Because I saw it in a 5375 source and tried to implement same packet in 5517 client, however it didnt work, any one got an idea what changed in that packet from 5375 to 5517?

Note: Packet I'm talking about(in 5375) has an attached picture, it was packet number 2023.


Thanks.
01/07/2021 21:41 ~Crystaline#2
As far as I can remember, `GameUpdate` is not packet 2023.

It is a MsgTaskDialog (2032).

Where, at offset 10 is the UpdateBoxPart (0-Header, 1-Body, 2-Footer).
Where, at offset 11 is the DialogActionType (112 is the value for the Update Box).
Where, at offset 12 is the StringCount maybe? (1 is the value)
Where, at offset 13 is the MessageContentLength
Where, at offset 14 is the MessageContent of your `GameUpdate`.

That is what I know :\
01/07/2021 23:05 diedwarrior#3
Thanks a lot Crystaline, yeah 2023 instead of 2032 was a typo from me.

I was missing that we must send all 3 types(header, body, footer) for this to show up.

Also, I had to send content length + 2 not just content length for the whole message to show up, in case some one faces this.

Thanks.