summaryrefslogtreecommitdiff
path: root/src/net/eathena/npchandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-09 19:31:00 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-09 19:31:00 +0300
commite234316a0a46677f4523b7b91b5c1cdc22a4fea1 (patch)
treed62d94a5d365b284d4e179fba4b3c0399ffb4a7d /src/net/eathena/npchandler.cpp
parentc2df86167db6b7a70ca9377b8a0953a2d3513cb8 (diff)
downloadManaVerse-e234316a0a46677f4523b7b91b5c1cdc22a4fea1.tar.gz
ManaVerse-e234316a0a46677f4523b7b91b5c1cdc22a4fea1.tar.bz2
ManaVerse-e234316a0a46677f4523b7b91b5c1cdc22a4fea1.tar.xz
ManaVerse-e234316a0a46677f4523b7b91b5c1cdc22a4fea1.zip
eathena: add packet CMSG_NPC_PRODUCE_MIX 0x018e.
Diffstat (limited to 'src/net/eathena/npchandler.cpp')
-rw-r--r--src/net/eathena/npchandler.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/npchandler.cpp b/src/net/eathena/npchandler.cpp
index 3f844a025..be82548fd 100644
--- a/src/net/eathena/npchandler.cpp
+++ b/src/net/eathena/npchandler.cpp
@@ -197,6 +197,18 @@ void NpcHandler::completeProgressBar() const
MessageOut outMsg(CMSG_NPC_COMPLETE_PROGRESS_BAR);
}
+void NpcHandler::produceMix(const int nameId,
+ const int materialId1,
+ const int materialId2,
+ const int materialId3) const
+{
+ MessageOut outMsg(CMSG_NPC_PRODUCE_MIX);
+ outMsg.writeInt16(nameId, "name id");
+ outMsg.writeInt16(materialId1, "material 1");
+ outMsg.writeInt16(materialId2, "material 2");
+ outMsg.writeInt16(materialId3, "material 3");
+}
+
int NpcHandler::getNpc(Net::MessageIn &msg)
{
if (msg.getId() == SMSG_NPC_CHOICE