Page 1 of 1

OP_BagOptions

Posted: Mon Jan 30, 2012 3:03 am
by xinux
Here is a new opcode if someone wants to hit up the C++ portion of it since it doesn't exist anywhere.

Changeing the name of the bag by right clicking on the bag and selecting bag options.

Code: Select all

-- OP_Unknown_497 -- *** DOV Opcode=484 ***
192.168.1.198 -> 69.174.200.47
0000:	00 09 03 B6 FF F1 01 A9 F1 9E 01 00 09 46 69 72 .............Fir
0010:	73 74 20 42 61 67                               st Bag
FF F1 01 = Opcode
A9 F1 9E 01 = Unique id **that changes every login**
00 = content_sellable check box ** 00 sellable 01 unsellable **
09 - 67 = item_name

This is what it sends when you hit use defaults and select save

Code: Select all

-- OP_Unknown_497 -- *** DOV Opcode=484 ***
192.168.1.198 -> 69.174.200.47
0000:	00 09 11 2A FF F1 01 A9 F1 9E 01 00 00          ...*.........

Code: Select all

<Struct Name="WS_BagOptions" ClientVersion="1" OpcodeName="OP_BagOptions">
  <Data ElementName="unique_id" Type="int32" Size="1" />
  <Data ElementName="contents_sellable" Type="int8" Size="1" />
  <Data ElementName="item_name" Type="EQ2_8Bit_String" Size="1" />
</Struct>

Re: OP_BagOptions

Posted: Mon Jan 30, 2012 11:28 am
by Zcoretri
Nice find Xinux :mrgreen: