Trace Packet 0x7074

04/13/2014 13:26 lewy1000#1
Hey,
I wanna make trace option for my clientless.
Code:
[C -> S][7074]
            01                                                ................
            03                                                ................
            01                                                ................
            21 47 05 00                                   !G..............
and send packets
Code:
 Packet packet = new Packet(0x7074);
            packet.WriteUInt8(1);
            packet.WriteUInt8(3);
            packet.WriteUInt8(1);
            packet.WriteUInt32(What here ?);
            Agent.Send(packet);
04/13/2014 15:47 pergian#2
its probably the object id which u want to trace.
04/13/2014 15:55 lewy1000#3
Hmm.. Then how to get this ID? Is it possible ?
04/13/2014 16:13 pergian#4
u can get it from the spawn packets
04/13/2014 16:24 lewy1000#5
Code:
[S -> C][3015]


85 07 00 00                                       ................


00                                                ................


00                                                ................


00                                                ................


00                                                ................


4D                                                M...............


08                                                ................


B6 98 00 00                                       ................


0C                                                ................


BC 98 00 00                                       ................


0C                                                ................


B9 98 00 00                                       ................


0C                                                ................


C2 98 00 00                                       ................


0C                                                ................


BF 98 00 00                                       ................


0C                                                ................


C5 98 00 00                                       ................


0C                                                ................


68 98 00 00                                       h...............


11                                                ................


3E 00 00 00                                       >...............


05                                                ................


03                                                ................


72 92 01 00                                       r...............


00                                                ................


76 92 01 00                                       v...............


00                                                ................


74 92 01 00                                       t...............


00                                                ................


00                                                ................


[B][U]6E 7B 05 00[/U][/B]                                       n{..............


A8 62                                             .b..............


9C CF 83 44 00 00 A0 41 1B 89 CB 43 78 85         ...D...A...Cx...


00                                                ................


01                                                ................


00                                                ................


78 85                                             x...............


01                                                ................


00                                                ................


00                                                ................


00                                                ................


CD CC 8C 41                                       ...A............


00 00 5C 42                                       ..\B............


00 00 C8 42                                       ...B............


00                                                ................


09 00                                             ................


[B][U]42 65 74 74 65 72 52 75 6E [/U][/B]                       BetterRun.......


00                                                ................


01                                                ................


00                                                ................


00                                                ................


00                                                ................


00                                                ................


00                                                ................


00                                                ................


00 00                                             ................


00 00 00 00                                       ................


00 00                                             ................


00 00 00 00                                       ................


00 00 00 00                                       ................


00 00 00 00                                       ................


00                                                ................


00                                                ................


00                                                ................


FF                                                ................


01                                                ................
It's packet from server to client and I select packets what give me ID and CharName
How to get it to textbox? or somtmhing?

Or here but here's not CharName
Code:
[S -> C][30BF]
CC 7C 05 00                                       .|..............
04                                                ................
00

@edit
I did this:
Code:
  Packet packet = new Packet(0x7074);
            packet.WriteUInt8(1);
            packet.WriteUInt8(3);
            packet.WriteUInt8(1);
            packet.WriteInt32(comboBox3.SelectedItem);
            Agent.Send(packet);
and to get ID object:

Code:
if (current.Opcode == 0x30BF)
                            {

                                Globals.MainWindow.comboBox3.Items.Add(current.ReadInt32());

                            }
any Idea?