From 83455b8803cfaaa537c8d15c64b5553c664885f5 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 9 Sep 2014 18:26:33 +0300 Subject: Add packet CMSG_SKILL_USE_POSITION_MORE 0x096a. --- src/net/tmwa/skillhandler.cpp | 12 ++++++++++++ src/net/tmwa/skillhandler.h | 4 ++++ 2 files changed, 16 insertions(+) (limited to 'src/net/tmwa') diff --git a/src/net/tmwa/skillhandler.cpp b/src/net/tmwa/skillhandler.cpp index da6a04b7e..26902f18e 100644 --- a/src/net/tmwa/skillhandler.cpp +++ b/src/net/tmwa/skillhandler.cpp @@ -93,6 +93,18 @@ void SkillHandler::usePos(const int id, const int level, outMsg.writeInt16(static_cast(y)); } +void SkillHandler::usePos(const int id, const int level, + const int x, const int y, + const std::string &text) const +{ + MessageOut outMsg(CMSG_SKILL_USE_POSITION_MORE); + outMsg.writeInt16(static_cast(level), "level"); + outMsg.writeInt16(static_cast(id), "id"); + outMsg.writeInt16(static_cast(x), "x"); + outMsg.writeInt16(static_cast(y), "y"); + outMsg.writeString(text, 80, "text"); +} + void SkillHandler::useMap(const int id, const std::string &map) const { MessageOut outMsg(CMSG_SKILL_USE_MAP); diff --git a/src/net/tmwa/skillhandler.h b/src/net/tmwa/skillhandler.h index a0be82c63..a1029ae6b 100644 --- a/src/net/tmwa/skillhandler.h +++ b/src/net/tmwa/skillhandler.h @@ -45,6 +45,10 @@ class SkillHandler final : public MessageHandler, public Ea::SkillHandler void usePos(const int id, const int level, const int x, const int y) const override final; + void usePos(const int id, const int level, + const int x, const int y, + const std::string &text) const override final; + void useMap(const int id, const std::string &map) const override final; protected: -- cgit v1.2.3-70-g09d2