summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-03-20 19:07:39 +0300
committerAndrei Karas <akaras@inbox.ru>2016-03-20 19:07:39 +0300
commit7511f401cb5e76c8f42ad703ef156cc0e7619353 (patch)
tree4e9c655b45d7d17bb07cdb98cd7703610ab1b6ce
parentffd4fd6c63fe5a8204db7b0da2f21001c754a963 (diff)
downloadplus-7511f401cb5e76c8f42ad703ef156cc0e7619353.tar.gz
plus-7511f401cb5e76c8f42ad703ef156cc0e7619353.tar.bz2
plus-7511f401cb5e76c8f42ad703ef156cc0e7619353.tar.xz
plus-7511f401cb5e76c8f42ad703ef156cc0e7619353.zip
Impliment packet SMSG_SKILL_MEMO_MESSAGE.
-rw-r--r--src/enums/resources/notifytypes.h3
-rw-r--r--src/net/eathena/skillrecv.cpp18
-rw-r--r--src/resources/notifications.h12
3 files changed, 31 insertions, 2 deletions
diff --git a/src/enums/resources/notifytypes.h b/src/enums/resources/notifytypes.h
index 8d615caa2..60600ef0c 100644
--- a/src/enums/resources/notifytypes.h
+++ b/src/enums/resources/notifytypes.h
@@ -225,6 +225,9 @@ namespace NotifyTypes
ADOPT_CHILD_ERROR_HAVE_BABY,
ADOPT_CHILD_ERROR_LEVEL,
ADOPT_CHILD_ERROR_BABY_MARRIED,
+ SKILL_MEMO_SAVED,
+ SKILL_MEMO_ERROR_LEVEL,
+ SKILL_MEMO_ERROR_SKILL,
TYPE_END
};
diff --git a/src/net/eathena/skillrecv.cpp b/src/net/eathena/skillrecv.cpp
index 8ec41c42f..4aac4907e 100644
--- a/src/net/eathena/skillrecv.cpp
+++ b/src/net/eathena/skillrecv.cpp
@@ -371,8 +371,22 @@ void SkillRecv::processSkillWarpPoint(Net::MessageIn &msg)
void SkillRecv::processSkillMemoMessage(Net::MessageIn &msg)
{
- UNIMPLIMENTEDPACKET;
- msg.readUInt8("type");
+ const int type = msg.readUInt8("type");
+ switch (type)
+ {
+ case 0:
+ NotifyManager::notify(NotifyTypes::SKILL_MEMO_SAVED);
+ break;
+ case 1:
+ NotifyManager::notify(NotifyTypes::SKILL_MEMO_ERROR_LEVEL);
+ break;
+ case 2:
+ NotifyManager::notify(NotifyTypes::SKILL_MEMO_ERROR_SKILL);
+ break;
+ default:
+ UNIMPLIMENTEDPACKETFIELD(type);
+ break;
+ }
}
void SkillRecv::processSkillProduceMixList(Net::MessageIn &msg)
diff --git a/src/resources/notifications.h b/src/resources/notifications.h
index 1139602f2..8d5e77794 100644
--- a/src/resources/notifications.h
+++ b/src/resources/notifications.h
@@ -816,6 +816,18 @@ namespace NotifyManager
N_("Adoption child error. This player already "
"married and can't be baby."),
NotifyFlags::EMPTY},
+ {"skill memo saved",
+ // TRANSLATORS: notification message
+ N_("Saved location for warp skill."),
+ NotifyFlags::EMPTY},
+ {"skill memo error level",
+ // TRANSLATORS: notification message
+ N_("Error saving location. Not enought skill level."),
+ NotifyFlags::EMPTY},
+ {"skill memo error skill",
+ // TRANSLATORS: notification message
+ N_("Error saving location. You not have warp skill."),
+ NotifyFlags::EMPTY},
};
} // namespace NotifyManager
#endif // RESOURCES_NOTIFICATIONS_H