summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/auctionhandler.cpp8
-rw-r--r--src/net/eathena/auctionhandler.h3
-rw-r--r--src/net/eathena/protocol.h1
3 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/auctionhandler.cpp b/src/net/eathena/auctionhandler.cpp
index afb5adbb5..0afe441a9 100644
--- a/src/net/eathena/auctionhandler.cpp
+++ b/src/net/eathena/auctionhandler.cpp
@@ -161,4 +161,12 @@ void AuctionHandler::close(const int auctionId) const
outMsg.writeInt32(auctionId, "auction id");
}
+void AuctionHandler::bid(const int auctionId,
+ const int money) const
+{
+ createOutPacket(CMSG_AUCTION_BID);
+ outMsg.writeInt32(auctionId, "auction id");
+ outMsg.writeInt32(money, "money");
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/auctionhandler.h b/src/net/eathena/auctionhandler.h
index e8406f317..4cf336b96 100644
--- a/src/net/eathena/auctionhandler.h
+++ b/src/net/eathena/auctionhandler.h
@@ -49,6 +49,9 @@ class AuctionHandler final : public MessageHandler, public Net::AuctionHandler
void close(const int auctionId) const override final;
+ void bid(const int auctionId,
+ const int money) const override final;
+
protected:
static void processOpenWindow(Net::MessageIn &msg);
diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h
index e1c3f4775..dd53a12f0 100644
--- a/src/net/eathena/protocol.h
+++ b/src/net/eathena/protocol.h
@@ -521,5 +521,6 @@
#define CMSG_AUCTION_REGISTER 0x024d
#define CMSG_AUCTION_CANCEL 0x024e
#define CMSG_AUCTION_CLOSE 0x025d
+#define CMSG_AUCTION_BID 0x024f
#endif // NET_EATHENA_PROTOCOL_H