summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-21 17:15:12 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-21 17:15:12 +0300
commit5b907fc3c1c21f69f1b86d4e3c16990dd2bff757 (patch)
treec7db0320a42458be294964c68326716f7daadde5 /src/net/eathena
parent224c8b62427c7441358dc343aa903c45515d3396 (diff)
downloadplus-5b907fc3c1c21f69f1b86d4e3c16990dd2bff757.tar.gz
plus-5b907fc3c1c21f69f1b86d4e3c16990dd2bff757.tar.bz2
plus-5b907fc3c1c21f69f1b86d4e3c16990dd2bff757.tar.xz
plus-5b907fc3c1c21f69f1b86d4e3c16990dd2bff757.zip
eathena: add packet SMSG_MERCENARY_ACTION 0x029f.
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/mercenaryhandler.cpp6
-rw-r--r--src/net/eathena/mercenaryhandler.h2
-rw-r--r--src/net/eathena/protocol.h2
3 files changed, 10 insertions, 0 deletions
diff --git a/src/net/eathena/mercenaryhandler.cpp b/src/net/eathena/mercenaryhandler.cpp
index b65662afd..541f62cf7 100644
--- a/src/net/eathena/mercenaryhandler.cpp
+++ b/src/net/eathena/mercenaryhandler.cpp
@@ -180,4 +180,10 @@ void MercenaryHandler::handleMercenaryMessage(const int cmd)
}
}
+void MercenaryHandler::fire()
+{
+ createOutPacket(SMSG_MERCENARY_ACTION);
+ outMsg.writeInt8(2, "action"); // delete
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/mercenaryhandler.h b/src/net/eathena/mercenaryhandler.h
index 39af9605b..7d99ea197 100644
--- a/src/net/eathena/mercenaryhandler.h
+++ b/src/net/eathena/mercenaryhandler.h
@@ -41,6 +41,8 @@ class MercenaryHandler final : public MessageHandler,
void handleMercenaryMessage(const int cmd) override final;
+ void fire() override final;
+
protected:
void processMercenaryUpdate(Net::MessageIn &msg);
diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h
index 6708da931..eda0ddbe8 100644
--- a/src/net/eathena/protocol.h
+++ b/src/net/eathena/protocol.h
@@ -427,4 +427,6 @@
#define CMSG_BANK_WITHDRAW 0x09a9
#define CMSG_BANK_CHECK 0x09ab
+#define SMSG_MERCENARY_ACTION 0x029f
+
#endif // NET_EATHENA_PROTOCOL_H