summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/net/ea/skillrecv.h3
-rw-r--r--src/net/eathena/skillrecv.cpp41
2 files changed, 44 insertions, 0 deletions
diff --git a/src/net/ea/skillrecv.h b/src/net/ea/skillrecv.h
index f968f0f36..9ef7d511c 100644
--- a/src/net/ea/skillrecv.h
+++ b/src/net/ea/skillrecv.h
@@ -56,6 +56,9 @@ static const unsigned int RFAIL_REDGEM = 0x07;
static const unsigned int RFAIL_BLUEGEM = 0x08;
static const unsigned int RFAIL_OVERWEIGHT = 0x09;
+static const unsigned int RFAIL_NEED_ITEM = 71;
+static const unsigned int RFAIL_NEED_EQUIPMENT = 72;
+
/** should always be zero if failed */
static const unsigned int SKILL_FAILED = 0x00;
diff --git a/src/net/eathena/skillrecv.cpp b/src/net/eathena/skillrecv.cpp
index faf72c478..dbd8f7166 100644
--- a/src/net/eathena/skillrecv.cpp
+++ b/src/net/eathena/skillrecv.cpp
@@ -39,6 +39,10 @@
#include "net/eathena/menu.h"
+#include "resources/iteminfo.h"
+
+#include "resources/db/itemdb.h"
+
#include "utils/gettext.h"
#include "utils/stringutils.h"
@@ -264,6 +268,43 @@ void SkillRecv::processSkillFailed(Net::MessageIn &msg)
// TRANSLATORS: error message
txt.append(_("You're carrying to much to do this!"));
break;
+ case RFAIL_NEED_EQUIPMENT:
+ {
+ const int itemId = bskill >> 16;
+ const int amount = bskill & 0xFFFFU;
+ const ItemInfo &info = ItemDB::get(itemId);
+ if (amount == 1)
+ {
+ txt.append(strprintf(_("Need equipment %s."),
+ info.getLink().c_str()));
+ }
+ else
+ {
+ txt.append(strprintf(_("Need equipment %s and amount %d"),
+ info.getLink().c_str(),
+ amount));
+ }
+ break;
+ }
+ case RFAIL_NEED_ITEM:
+ {
+ const int itemId = bskill >> 16;
+ const int amount = bskill & 0xFFFFU;
+ const ItemInfo &info = ItemDB::get(itemId);
+ if (amount == 1)
+ {
+ txt.append(strprintf(_("Need item %s."),
+ info.getLink().c_str()));
+ }
+ else
+ {
+ txt.append(strprintf(_("Need item %s and amount %d"),
+ info.getLink().c_str(),
+ amount));
+ }
+ break;
+ }
+
default:
UNIMPLIMENTEDPACKET;
break;