summaryrefslogtreecommitdiff
path: root/src/net/eathena/packetsout.inc
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-04-08 21:10:23 +0300
committerAndrei Karas <akaras@inbox.ru>2019-04-08 21:10:23 +0300
commit28fa4b87f677d518ac83f105a44da839d6b63bfa (patch)
tree351138bc5002325d1f5521c368e845f972322264 /src/net/eathena/packetsout.inc
parentc6ae5185f29076ec4d31b37d84619a261a8a63c8 (diff)
downloadplus-28fa4b87f677d518ac83f105a44da839d6b63bfa.tar.gz
plus-28fa4b87f677d518ac83f105a44da839d6b63bfa.tar.bz2
plus-28fa4b87f677d518ac83f105a44da839d6b63bfa.tar.xz
plus-28fa4b87f677d518ac83f105a44da839d6b63bfa.zip
Add packer CMSG_MAP_PING2 0x0b1c
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r--src/net/eathena/packetsout.inc19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc
index 6cc8117ad..ae03a13e2 100644
--- a/src/net/eathena/packetsout.inc
+++ b/src/net/eathena/packetsout.inc
@@ -356,6 +356,7 @@ packet(CMSG_CAMERA_INFO, 0x0000, 0, nullptr);
packet(CMSG_NPC_BARTER_BUY, 0x0000, 0, nullptr);
packet(CMSG_CLIENT_VERSION, 0x0000, 0, nullptr);
packet(CMSG_PLAYER_STYLE_CLOSE, 0x0000, 0, nullptr);
+packet(CMSG_MAP_PING2, 0x0000, 0, nullptr);
#else
// 20040713
if (packetVersion >= 20040713)
@@ -1583,4 +1584,22 @@ if (packetVersionRe >= 20190116)
packet(CMSG_NPC_BARTER_BUY, 0x0b0f, -1, clif->pNPCBarterPurchase);
}
+//20190220 re
+if (packetVersionRe >= 20190220)
+{
+ packet(CMSG_MAP_PING2, 0x0b1c, 2, clif->pPing);
+}
+
+//20190220 zero
+if (packetVersionZero >= 20190220)
+{
+ packet(CMSG_MAP_PING2, 0x0b1c, 2, clif->pPing);
+}
+
+//20190227 main
+if (packetVersionMain >= 20190227)
+{
+ packet(CMSG_MAP_PING2, 0x0b1c, 2, clif->pPing);
+}
+
#endif