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 @@ -437,6 +437,21 @@ public static void HandleAuctionListBucketsResult(Packet packet)
437437 ReadBucketInfo ( packet , i ) ;
438438 }
439439
440+ [ Parser ( Opcode . SMSG_AUCTION_LIST_OWNED_ITEMS_RESULT ) ]
441+ public static void HandleAuctionListOwnedItemsResult ( Packet packet )
442+ {
443+ var itemsCount = packet . ReadInt32 ( ) ;
444+ var soldItemsCount = packet . ReadInt32 ( ) ;
445+ packet . ReadUInt32 ( "DesiredDelay" ) ;
446+ packet . ReadBit ( "HasMoreResults" ) ;
447+
448+ for ( var i = 0 ; i < itemsCount ; ++ i )
449+ ReadCliAuctionItem ( packet , "Items" , i ) ;
450+
451+ for ( var i = 0 ; i < soldItemsCount ; ++ i )
452+ ReadCliAuctionItem ( packet , "SoldItems" , i ) ;
453+ }
454+
440455 [ Parser ( Opcode . CMSG_AUCTION_LIST_PENDING_SALES ) ]
441456 public static void HandleAuctionZero ( Packet packet )
442457 {
You can’t perform that action at this time.
0 commit comments