i have packet like that:
Code:
[S -> C][3015] 74 07 00 00 t............... 23 #............... 00 ................ 00 ................ 01 ................ 2D -............... 05 ................ 38 0E 00 00 8............... 14 ................ 39 0E 00 00 9............... 14 ................ 3A 0E 00 00 :............... 14 ................ 30 0E 00 00 0............... 14 ................ 86 2A 00 00 .*.............. 14 ................ 05 ................ 00 ................ 00 ................ 90 17 0A 00 ................ A8 61 .a.............. 00 60 88 44 21 EE B3 C0 00 C0 D6 44 56 37 .`.D!......DV7.. 00 ................ 01 ................ 00 ................ 56 37 V7.............. 01 ................ 00 ................ 00 ................ 00 ................ 00 00 80 41 ...A............ 00 00 48 42 ..HB............ 00 00 C8 42 ...B............ 00 ................ 0C 00 ................ 59 6F 75 4D 61 6B 65 4D 65 48 6F 72 YouMakeMeHor.... 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 ................
Code:
if ((current.Opcode == 0x3015))
{
current.ReadUInt32();
current.ReadUInt8();
current.ReadUInt8();
current.ReadUInt8();
current.ReadUInt8();
current.ReadUInt8();
current.ReadUInt8();
current.ReadUInt32();
current.ReadUInt8();
current.ReadUInt32();
current.ReadUInt8();
current.ReadUInt32();
current.ReadUInt8();
current.ReadUInt32();
current.ReadUInt8();
current.ReadUInt32();
current.ReadUInt8();
current.ReadUInt32();
current.ReadUInt8();
current.ReadUInt32();
current.ReadUInt8();
current.ReadUInt32();
current.ReadUInt8();
current.ReadUInt8();
current.ReadUInt8();
/* ID */
Globals.MainWindow.comboBox4.Items.Add(current.ReadUInt32());
/* end ID */
current.ReadUInt16();
Globals.MainWindow.comboBox3.Items.Add(current.ReadAscii());
current.ReadUInt8();
current.ReadUInt8();
current.ReadUInt8();
current.ReadUInt16();
current.ReadUInt16();
current.ReadUInt16();
current.ReadUInt16();
current.ReadUInt8();
current.ReadUInt8();
current.ReadUInt8();
current.ReadUInt8();
current.ReadUInt32();
current.ReadUInt32();
current.ReadUInt32();
current.ReadUInt8();
current.ReadUInt32();
current.ReadUInt32();
current.ReadUInt16();
Globals.MainWindow.comboBox4.Items.Add(current.ReadAscii());
}
What am i doing wrong?







