summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-18 12:22:19 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-18 12:22:19 +0300
commitc9418c55fab6be4151d7a540daa01542d16a2ddd (patch)
tree5a29b442d56791ad82b254ceae3323bd36950f33 /src
parentf1e11793e780d41f2200fa7344328488d9275dfd (diff)
downloadplus-c9418c55fab6be4151d7a540daa01542d16a2ddd.tar.gz
plus-c9418c55fab6be4151d7a540daa01542d16a2ddd.tar.bz2
plus-c9418c55fab6be4151d7a540daa01542d16a2ddd.tar.xz
plus-c9418c55fab6be4151d7a540daa01542d16a2ddd.zip
eathena: add partial support for packet SMSG_NPC_CASH_POINTS 0x0845.
Diffstat (limited to 'src')
-rw-r--r--src/net/eathena/cashshophandler.cpp12
-rw-r--r--src/net/eathena/cashshophandler.h2
-rw-r--r--src/net/eathena/packets.h2
-rw-r--r--src/net/eathena/protocol.h1
4 files changed, 16 insertions, 1 deletions
diff --git a/src/net/eathena/cashshophandler.cpp b/src/net/eathena/cashshophandler.cpp
index 67d50cd21..5cc0529a7 100644
--- a/src/net/eathena/cashshophandler.cpp
+++ b/src/net/eathena/cashshophandler.cpp
@@ -47,6 +47,7 @@ CashShopHandler::CashShopHandler() :
{
SMSG_NPC_CASH_SHOP_OPEN,
SMSG_NPC_CASH_BUY_ACK,
+ SMSG_NPC_CASH_POINTS,
0
};
handledMessages = _messages;
@@ -66,6 +67,10 @@ void CashShopHandler::handleMessage(Net::MessageIn &msg)
processCashShopBuyAck(msg);
break;
+ case SMSG_NPC_CASH_POINTS:
+ processCashShopPoints(msg);
+ break;
+
default:
break;
}
@@ -100,6 +105,13 @@ void CashShopHandler::processCashShopBuyAck(Net::MessageIn &msg)
msg.readInt16("error");
}
+void CashShopHandler::processCashShopPoints(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+ msg.readInt32("cash points");
+ msg.readInt32("kafra points");
+}
+
void CashShopHandler::buyItem(const int points,
const int itemId,
const unsigned char color A_UNUSED,
diff --git a/src/net/eathena/cashshophandler.h b/src/net/eathena/cashshophandler.h
index 176af7dc3..cc6ccc0c1 100644
--- a/src/net/eathena/cashshophandler.h
+++ b/src/net/eathena/cashshophandler.h
@@ -51,6 +51,8 @@ class CashShopHandler final : public MessageHandler,
static void processCashShopBuyAck(Net::MessageIn &msg);
+ static void processCashShopPoints(Net::MessageIn &msg);
+
static BuyDialog *mBuyDialog;
};
diff --git a/src/net/eathena/packets.h b/src/net/eathena/packets.h
index 22dbaf1a8..52d6ea51b 100644
--- a/src/net/eathena/packets.h
+++ b/src/net/eathena/packets.h
@@ -220,7 +220,7 @@ int16_t packet_lengths[] =
0, 0, 0, 0, 6, 0, -1, 3, 14, 0, 10, 0, 10, -1, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 5, 0, 0, 6, 26, 0,
// #0x0840
- -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0,
+ -1, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h
index 85256de0f..17b568177 100644
--- a/src/net/eathena/protocol.h
+++ b/src/net/eathena/protocol.h
@@ -195,6 +195,7 @@
#define SMSG_NPC_MARKET_BUY_ACK 0x09d7
#define SMSG_NPC_CASH_SHOP_OPEN 0x0287
#define SMSG_NPC_CASH_BUY_ACK 0x0289
+#define SMSG_NPC_CASH_POINTS 0x0845
#define SMSG_NPC_AREA 0x0b0b
#define SMSG_NPC_SHOW_DIGIT 0x01b1