File tree Expand file tree Collapse file tree
WowPacketParserModule.V4_4_0_54481/Parsers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -463,6 +463,25 @@ public static void HandleAuctionListBiddedItemsResult(Packet packet)
463463 ReadCliAuctionItem ( packet , "Items" , i ) ;
464464 }
465465
466+ [ Parser ( Opcode . SMSG_AUCTION_GET_COMMODITY_QUOTE_RESULT ) ]
467+ public static void HandleAuctionHouseGetCommodityQuoteResult ( Packet packet )
468+ {
469+ var hasTotalPrice = packet . ReadBit ( ) ;
470+ var hasQuantity = packet . ReadBit ( ) ;
471+ var hasQuoteDuration = packet . ReadBit ( ) ;
472+ packet . ReadInt32 ( "ItemID" ) ;
473+ packet . ReadUInt32 ( "DesiredDelay" ) ;
474+
475+ if ( hasTotalPrice )
476+ packet . ReadUInt64 ( "TotalPrice" ) ;
477+
478+ if ( hasQuantity )
479+ packet . ReadUInt32 ( "Quantity" ) ;
480+
481+ if ( hasQuoteDuration )
482+ packet . ReadInt64 ( "QuoteDuration" ) ;
483+ }
484+
466485 [ Parser ( Opcode . CMSG_AUCTION_LIST_PENDING_SALES ) ]
467486 public static void HandleAuctionZero ( Packet packet )
468487 {
You can’t perform that action at this time.
0 commit comments