summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-08-11 21:17:14 +0300
committerAndrei Karas <akaras@inbox.ru>2017-08-11 21:17:14 +0300
commit3be81954bafe8cf4b883da939d4185c8aa6f799e (patch)
tree68a5928a5110a1be40e0be7ecaab687edf9e30e2
parent307ef5331a3f18a28820f773b0dfce8db479bf7a (diff)
downloadplus-3be81954bafe8cf4b883da939d4185c8aa6f799e.tar.gz
plus-3be81954bafe8cf4b883da939d4185c8aa6f799e.tar.bz2
plus-3be81954bafe8cf4b883da939d4185c8aa6f799e.tar.xz
plus-3be81954bafe8cf4b883da939d4185c8aa6f799e.zip
Add packet CMSG_MAIL2_REQUEST_ITEMS 0x09f3.
-rw-r--r--src/net/eathena/mail2handler.cpp13
-rw-r--r--src/net/eathena/mail2handler.h3
-rw-r--r--src/net/eathena/packetsout.inc2
-rw-r--r--src/net/mail2handler.h3
-rw-r--r--src/net/tmwa/mail2handler.cpp5
-rw-r--r--src/net/tmwa/mail2handler.h3
6 files changed, 29 insertions, 0 deletions
diff --git a/src/net/eathena/mail2handler.cpp b/src/net/eathena/mail2handler.cpp
index 623283617..97f4f0bb2 100644
--- a/src/net/eathena/mail2handler.cpp
+++ b/src/net/eathena/mail2handler.cpp
@@ -178,4 +178,17 @@ void Mail2Handler::requestMoney(const int openType,
outMsg.writeInt8(openType, "open type");
}
+void Mail2Handler::requestItems(const int openType,
+ const int64_t mailId) const
+{
+ if (packetVersion < 20140326 ||
+ serverVersion < 19)
+ {
+ return;
+ }
+ createOutPacket(CMSG_MAIL2_REQUEST_ITEMS);
+ outMsg.writeInt64(mailId, "mail id");
+ outMsg.writeInt8(openType, "open type");
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/mail2handler.h b/src/net/eathena/mail2handler.h
index 6188f21eb..14ff5441d 100644
--- a/src/net/eathena/mail2handler.h
+++ b/src/net/eathena/mail2handler.h
@@ -59,6 +59,9 @@ class Mail2Handler final : public Net::Mail2Handler
void requestMoney(const int openType,
const int64_t mailId) const override final;
+
+ void requestItems(const int openType,
+ const int64_t mailId) const override final;
};
} // namespace EAthena
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc
index 456ae8ae4..580e8bb19 100644
--- a/src/net/eathena/packetsout.inc
+++ b/src/net/eathena/packetsout.inc
@@ -326,6 +326,7 @@ 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);
+packet(CMSG_MAIL2_REQUEST_ITEMS, 0x0000, 0, nullptr);
#else
// 20040713
if (packetVersion >= 20040713)
@@ -1335,6 +1336,7 @@ if (packetVersion == 20140305)
if (packetVersion == 20140326)
{
packet(CMSG_MAIL2_REQUEST_MONEY, 0x09f1, 11, clif->pRodexRequestZeny);
+ packet(CMSG_MAIL2_REQUEST_ITEMS, 0x09f3, 11, clif->pRodexRequestItems);
}
// 20140402
diff --git a/src/net/mail2handler.h b/src/net/mail2handler.h
index 0b824c1d2..c42905857 100644
--- a/src/net/mail2handler.h
+++ b/src/net/mail2handler.h
@@ -65,6 +65,9 @@ class Mail2Handler notfinal
virtual void requestMoney(const int openType,
const int64_t mailId) const = 0;
+
+ virtual void requestItems(const int openType,
+ const int64_t mailId) const = 0;
};
} // namespace Net
diff --git a/src/net/tmwa/mail2handler.cpp b/src/net/tmwa/mail2handler.cpp
index 5017e0716..bc01d874b 100644
--- a/src/net/tmwa/mail2handler.cpp
+++ b/src/net/tmwa/mail2handler.cpp
@@ -76,4 +76,9 @@ void Mail2Handler::requestMoney(const int openType A_UNUSED,
{
}
+void Mail2Handler::requestItems(const int openType A_UNUSED,
+ const int64_t mailId A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/mail2handler.h b/src/net/tmwa/mail2handler.h
index 5df6370df..d46f73291 100644
--- a/src/net/tmwa/mail2handler.h
+++ b/src/net/tmwa/mail2handler.h
@@ -59,6 +59,9 @@ class Mail2Handler final : public Net::Mail2Handler
void requestMoney(const int openType,
const int64_t mailId) const override final;
+
+ void requestItems(const int openType,
+ const int64_t mailId) const override final;
};
} // namespace TmwAthena