summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-21 15:37:42 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-21 16:37:24 +0300
commit76087008664d96b492fde077bb8b8e632ea30ba8 (patch)
tree07c3b951bc919ca7a98558474617d5abb12fe01f /src/net/eathena
parent1b9e74d6c00033b2103f70162c96e9bf5ce6f2b7 (diff)
downloadManaVerse-76087008664d96b492fde077bb8b8e632ea30ba8.tar.gz
ManaVerse-76087008664d96b492fde077bb8b8e632ea30ba8.tar.bz2
ManaVerse-76087008664d96b492fde077bb8b8e632ea30ba8.tar.xz
ManaVerse-76087008664d96b492fde077bb8b8e632ea30ba8.zip
Impliment packet SMSG_PLAYER_ITEM_RENTAL_TIME (hercules).
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/inventoryhandler.cpp16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp
index 61d081434..ff5871d93 100644
--- a/src/net/eathena/inventoryhandler.cpp
+++ b/src/net/eathena/inventoryhandler.cpp
@@ -47,6 +47,11 @@
#include "net/ea/eaprotocol.h"
#include "net/ea/equipbackend.h"
+#include "resources/iteminfo.h"
+
+#include "utils/gettext.h"
+#include "utils/stringutils.h"
+
#include "debug.h"
extern Net::InventoryHandler *inventoryHandler;
@@ -899,10 +904,13 @@ void InventoryHandler::selectEgg(const Item *const item) const
void InventoryHandler::processPlayerItemRentalTime(Net::MessageIn &msg)
{
- UNIMPLIMENTEDPACKET;
- // +++ need update item rental time
- msg.readInt16("item id");
- msg.readInt32("seconds");
+ const int id = msg.readInt16("item id");
+ const int seconds = msg.readInt32("seconds");
+ const ItemInfo &info = ItemDB::get(id);
+ const std::string timeStr = timeDiffToString(seconds);
+ NotifyManager::notify(NotifyTypes::RENTAL_TIME_LEFT,
+ strprintf(_("Left %s rental time for item %s."),
+ timeStr.c_str(), info.getName().c_str()));
}
void InventoryHandler::processPlayerItemRentalExpired(Net::MessageIn &msg)