SMSG_AUCTION_COMMAND_RESULT
Client Version 1.12
Wowm Representation
Autogenerated from wowm
file at wow_message_parser/wowm/world/auction/smsg/smsg_auction_command_result.wowm:35
.
smsg SMSG_AUCTION_COMMAND_RESULT = 0x025B {
u32 auction_id;
AuctionCommandAction action;
if (action == BID_PLACED) {
AuctionCommandResult result;
if (result == OK) {
u32 auction_outbid1;
}
else if (result == ERR_INVENTORY) {
InventoryResult inventory_result;
}
else if (result == ERR_HIGHER_BID) {
Guid higher_bidder;
u32 new_bid;
u32 auction_outbid2;
}
}
else {
AuctionCommandResultTwo result2;
if (result2 == ERR_INVENTORY) {
InventoryResult inventory_result2;
}
else if (result2 == ERR_HIGHER_BID) {
Guid higher_bidder2;
u32 new_bid2;
u32 auction_outbid3;
}
}
}
Header
SMSG have a header of 4 bytes.
SMSG Header
Offset | Size / Endianness | Type | Name | Description |
---|---|---|---|---|
0x00 | 2 / Big | uint16 | size | Size of the rest of the message including the opcode field but not including the size field. |
0x02 | 2 / Little | uint16 | opcode | Opcode that determines which fields the message contains. |
Client Version 2.4.3
Wowm Representation
Autogenerated from wowm
file at wow_message_parser/wowm/world/auction/smsg/smsg_auction_command_result.wowm:35
.
smsg SMSG_AUCTION_COMMAND_RESULT = 0x025B {
u32 auction_id;
AuctionCommandAction action;
if (action == BID_PLACED) {
AuctionCommandResult result;
if (result == OK) {
u32 auction_outbid1;
}
else if (result == ERR_INVENTORY) {
InventoryResult inventory_result;
}
else if (result == ERR_HIGHER_BID) {
Guid higher_bidder;
u32 new_bid;
u32 auction_outbid2;
}
}
else {
AuctionCommandResultTwo result2;
if (result2 == ERR_INVENTORY) {
InventoryResult inventory_result2;
}
else if (result2 == ERR_HIGHER_BID) {
Guid higher_bidder2;
u32 new_bid2;
u32 auction_outbid3;
}
}
}
Header
SMSG have a header of 4 bytes.
SMSG Header
Offset | Size / Endianness | Type | Name | Description |
---|---|---|---|---|
0x00 | 2 / Big | uint16 | size | Size of the rest of the message including the opcode field but not including the size field. |
0x02 | 2 / Little | uint16 | opcode | Opcode that determines which fields the message contains. |
Client Version 3.3.5
Wowm Representation
Autogenerated from wowm
file at wow_message_parser/wowm/world/auction/smsg/smsg_auction_command_result.wowm:88
.
smsg SMSG_AUCTION_COMMAND_RESULT = 0x025B {
u32 auction_id;
AuctionCommandAction action;
AuctionCommandResult result;
if (result == ERR_INVENTORY) {
InventoryResult inventory_result;
}
}
Header
SMSG have a header of 4 bytes.
SMSG Header
Offset | Size / Endianness | Type | Name | Description |
---|---|---|---|---|
0x00 | 2 OR 3 / Big | uint16 OR uint16+uint8 | size | Size of the rest of the message including the opcode field but not including the size field. Wrath server messages can be 3 bytes. If the first (most significant) size byte has 0x80 set, the header will be 3 bytes, otherwise it is 2. |
- | 2 / Little | uint16 | opcode | Opcode that determines which fields the message contains. |
Body
Offset | Size / Endianness | Type | Name | Comment |
---|---|---|---|---|
- | 4 / Little | u32 | auction_id | |
- | 4 / - | AuctionCommandAction | action | |
- | 4 / - | AuctionCommandResult | result |
If result is equal to ERR_INVENTORY
:
Offset | Size / Endianness | Type | Name | Comment |
---|---|---|---|---|
- | 1 / - | InventoryResult | inventory_result |