diff options
author | Wushin <pasekei@gmail.com> | 2015-05-06 13:02:58 -0500 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2015-05-06 13:02:58 -0500 |
commit | 80d274fb48eafda9881bcdacf84a3b76599b2a60 (patch) | |
tree | 4f7aea9c6efe98b8330ba2afe62a16c255204f10 /tools | |
parent | 535f89f055ce211f483e09f8680f10b14d87b92d (diff) | |
parent | 5fc7747131ced6b764d5b6b87657150cc63fd1aa (diff) | |
download | tmwa-80d274fb48eafda9881bcdacf84a3b76599b2a60.tar.gz tmwa-80d274fb48eafda9881bcdacf84a3b76599b2a60.tar.bz2 tmwa-80d274fb48eafda9881bcdacf84a3b76599b2a60.tar.xz tmwa-80d274fb48eafda9881bcdacf84a3b76599b2a60.zip |
Merge pull request #16 from Rawng/walkpathfixtest
Send test 0x0225 packet with servers mob walkpath.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/protocol.py | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/tools/protocol.py b/tools/protocol.py index 7547bc6..688821f 100755 --- a/tools/protocol.py +++ b/tools/protocol.py @@ -4653,7 +4653,27 @@ def build_context(): # 0x0222 define='CMSG_CHAT_MESSAGE2', # 0x0223 define='SMSG_BEING_CHAT2', # 0x0224 define='SMSG_PLAYER_CHAT2', - # 0x0225 define='SMSG_BEING_MOVE3', + map_user.s(0x0225, 'being move 3', + define='SMSG_BEING_MOVE3', + head=[ + at(0, u16, 'packet id'), + at(2, u16, 'packet length'), + at(4, block_id, 'id'), + at(8, interval16, 'speed'), + at(10, u16, 'x position'), + at(12, u16, 'y position'), + ], + head_size=14, + repeat=[ + at(0, dir, 'move'), + ], + repeat_size=1, + pre=[NOTHING], + post=[PRETTY], + desc=''' + Send mob walkpath data to client + ''', + ) # 0x0226 define='SMSG_MAP_MASK', # 0x0227 define='SMSG_MAP_MUSIC', # 0x0228 define='SMSG_NPC_CHANGETITLE', |