diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-11 20:45:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-11 20:45:11 +0300 |
commit | 307ef5331a3f18a28820f773b0dfce8db479bf7a (patch) | |
tree | b84460898570b2f411a609f2d2bad5b8043672f3 /src/net/eathena/packetsout.inc | |
parent | 66d940df678f16b5f53f58f80837826e24031eb1 (diff) | |
download | manaplus-307ef5331a3f18a28820f773b0dfce8db479bf7a.tar.gz manaplus-307ef5331a3f18a28820f773b0dfce8db479bf7a.tar.bz2 manaplus-307ef5331a3f18a28820f773b0dfce8db479bf7a.tar.xz manaplus-307ef5331a3f18a28820f773b0dfce8db479bf7a.zip |
Add packet CMSG_MAIL2_REQUEST_MONEY 0x09f1.
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r-- | src/net/eathena/packetsout.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index 12f9a03ce..456ae8ae4 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -325,6 +325,7 @@ packet(CMSG_MAIL2_SEND_MAIL, 0x0000, 0, nullptr); packet(CMSG_MAIL2_NEXT_PAGE, 0x0000, 0, nullptr); packet(CMSG_MAIL2_READ_MAIL, 0x0000, 0, nullptr); packet(CMSG_MAIL2_DELETE_MAIL, 0x0000, 0, nullptr); +packet(CMSG_MAIL2_REQUEST_MONEY, 0x0000, 0, nullptr); #else // 20040713 if (packetVersion >= 20040713) @@ -1330,6 +1331,12 @@ if (packetVersion == 20140305) packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest); } +// 20140326 +if (packetVersion == 20140326) +{ + packet(CMSG_MAIL2_REQUEST_MONEY, 0x09f1, 11, clif->pRodexRequestZeny); +} + // 20140402 if (packetVersion == 20140402) { |