diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-17 23:04:38 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-17 23:04:38 +0300 |
commit | 45c7fa7d912504e25396320013baf388c419f908 (patch) | |
tree | 78e891ee5aefcf6f237dfdba019888f7b27c8b87 /src/resources | |
parent | 92d592dce023fc155d7956e5e80f170f23b456f6 (diff) | |
download | plus-45c7fa7d912504e25396320013baf388c419f908.tar.gz plus-45c7fa7d912504e25396320013baf388c419f908.tar.bz2 plus-45c7fa7d912504e25396320013baf388c419f908.tar.xz plus-45c7fa7d912504e25396320013baf388c419f908.zip |
eathena: add packet SMSG_PET_ROULETTE 0x01a0.
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/notifications.h | 12 | ||||
-rw-r--r-- | src/resources/notifytypes.h | 3 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/resources/notifications.h b/src/resources/notifications.h index 063235af7..952bc0a9e 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -322,6 +322,18 @@ namespace NotifyManager // TRANSLATORS: notification message N_("Char is not online!"), NotifyFlags::PARTY_STRING}, + {"pet catch failed", + // TRANSLATORS: notification message + N_("Pet catch failed."), + NotifyFlags::EMPTY}, + {"pet catch success", + // TRANSLATORS: notification message + N_("Pet catched."), + NotifyFlags::EMPTY}, + {"pet catch unknown error", + // TRANSLATORS: notification message + N_("Pet catch unkown error: %d."), + NotifyFlags::INT}, }; } // namespace NotifyManager #endif // RESOURCES_NOTIFICATIONS_H diff --git a/src/resources/notifytypes.h b/src/resources/notifytypes.h index 56f612a08..36b1f3047 100644 --- a/src/resources/notifytypes.h +++ b/src/resources/notifytypes.h @@ -100,6 +100,9 @@ namespace NotifyTypes PARTY_INVITE_PARTY_SAME_ACCOUNT, PARTY_INVITE_PARTY_BLOCKED_INVITE, PARTY_INVITE_PARTY_NOT_ONLINE, + PET_CATCH_FAILED, + PET_CATCH_SUCCESS, + PET_CATCH_UNKNOWN, TYPE_END }; |