summaryrefslogtreecommitdiff
path: root/src/net/eathena/skillhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-18 00:07:02 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-18 00:07:02 +0300
commitb1fae7bfe9a48c8a25f8b7d048256a5ab0de4c3f (patch)
treef7052c942f2757412cd4692859194a2448279218 /src/net/eathena/skillhandler.cpp
parent823aa3ec75e3d7388bafffa5dd7d1fb36a54e7ce (diff)
downloadplus-b1fae7bfe9a48c8a25f8b7d048256a5ab0de4c3f.tar.gz
plus-b1fae7bfe9a48c8a25f8b7d048256a5ab0de4c3f.tar.bz2
plus-b1fae7bfe9a48c8a25f8b7d048256a5ab0de4c3f.tar.xz
plus-b1fae7bfe9a48c8a25f8b7d048256a5ab0de4c3f.zip
eathena: add partial support for packet SMSG_SKILL_ITEM_LIST_WINDOW 0x07e3.
Diffstat (limited to 'src/net/eathena/skillhandler.cpp')
-rw-r--r--src/net/eathena/skillhandler.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/net/eathena/skillhandler.cpp b/src/net/eathena/skillhandler.cpp
index 762c60816..374952014 100644
--- a/src/net/eathena/skillhandler.cpp
+++ b/src/net/eathena/skillhandler.cpp
@@ -70,6 +70,7 @@ SkillHandler::SkillHandler() :
SMSG_SKILL_ARROW_CREATE_LIST,
SMSG_PLAYER_SKILL_AUTO_SPELLS,
SMSG_SKILL_DEVOTION_EFFECT,
+ SMSG_SKILL_ITEM_LIST_WINDOW,
0
};
handledMessages = _messages;
@@ -148,6 +149,10 @@ void SkillHandler::handleMessage(Net::MessageIn &msg)
processSkillDevotionEffect(msg);
break;
+ case SMSG_SKILL_ITEM_LIST_WINDOW:
+ processSkillItemListWindow(msg);
+ break;
+
default:
break;
}
@@ -486,4 +491,12 @@ void SkillHandler::processSkillDevotionEffect(Net::MessageIn &msg)
msg.readInt16("range");
}
+void SkillHandler::processSkillItemListWindow(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+
+ msg.readInt32("skill level");
+ msg.readInt32("unused");
+}
+
} // namespace EAthena