Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Need help to understand movement packets and analyzing them V111

Junior Spellweaver
Joined
Apr 4, 2008
Messages
185
Reaction score
21
i dont know how to handle movement packets i mean i get the received packet and then i get the type of movement like 64 or -28...
how can i know what movement is it ?
example (sniffed from normal walking beginner):
PHP:
[49 00] - header
[01 20 D6 5D E7 4D 0F E8 3C 38 FA 1C 00 00 00 00 00 03 00 38 FA 1C 00 00 00 00 00 11 00 00 00 00 00 04 B4 00 00 60 FA 1C 00 96 00 00 00 11 00 00 00 00 00] - skip 51 
[02] - numCommands
[41] - command (type of movement) is 65 
01 00 61 FA 1C 00 96 00 00 00 12 00 00 00 00 00 02 09 00 11 00 00 00 44 44 44 44 44 04 38 FA 1C 00 61 FA 1C 00
its unhandled how can i know what type of movement (like float or normal move) it is and how to analyze it ?
thank you :)
 
Newbie Spellweaver
Joined
May 28, 2012
Messages
45
Reaction score
4
[49 00] - header

01 // portal count
20 D6 5D E7
4D 0F E8 3C
38 FA 1C 00 // original pos
00 00 00 00

03 - numCommands

00
38 FA 1C 00
00 00 00 00
11 00
00 00 00 00
04
B4 00

00 60 FA 1C
00 96 00 00
00 11
00 00 00 00
00
02 41

01
00 61 FA 1C
00
96 00

00 00 12 00 00 00 00 00 02 09 00 11 00 00 00 44 44 44 44 44 04 38 FA 1C 00 61 FA 1C 00 - remaining

For the updated movement handler, search somewhere around the help forum, I posted them on one of the thread.
 
Upvote 0
Back
Top