Quote:
Originally Posted by DaxterSoul
I'm not sure if you get one after buying something with silk but teleportation should definitely triggers an update.
|
yep, teleporting triggers an update
Im having another problem: understanding Paket 0x7034
I used xsniff to lookup whats happening when I buy a Tiger from the Item Mall, thats the Packet which gets send to the Server:
[0000000000] 18 1B 04 03 02 01 1F 00 50 41 43 4B 41 47 45 5F
[0000000016] 49 54 45 4D 5F 43 4F 53 5F 43 5F 54 49 47 45 52
[0000000032] 5F 53 43 52 4F 4C 4C 01 00 00 00 00 00 00 00 00
[0000000048] 00 91 04 00 00
Ascii: ........PACKAGE_ITEM_COS_C_TIGER_SCROLL........... ..
my -not working code-
Code:
Packet BuyTiger = new Packet(0x7034);
BuyTiger.WriteUInt8(0x18);
BuyTiger.WriteUInt8(0x1B);
BuyTiger.WriteUInt8(0x04);
BuyTiger.WriteUInt8(0x03);
BuyTiger.WriteUInt8(0x02);
BuyTiger.WriteUInt8(0x01);
BuyTiger.WriteUInt8(0x1F);
BuyTiger.WriteUInt8(0x00);
BuyTiger.WriteAscii("PACKAGE_ITEM_COS_C_TIGER_SCROLL");
BuyTiger.WriteUInt8(0x00);
BuyTiger.WriteUInt8(0x00);
BuyTiger.WriteUInt8(0x00);
BuyTiger.WriteUInt8(0x00);
BuyTiger.WriteUInt8(0x00);
BuyTiger.WriteUInt8(0x00);
BuyTiger.WriteUInt8(0x00);
BuyTiger.WriteUInt8(0x00);
BuyTiger.WriteUInt8(0x00);
BuyTiger.WriteUInt8(0x91);
BuyTiger.WriteUInt8(0x04);
BuyTiger.WriteUInt8(0x00);
BuyTiger.WriteUInt8(0x00);
C.AG.Security.Send(BuyTiger);
I dont get how the Packet is structured, since I found its used for a lot of different things.