I got little problem with packet send via AutoIT
It's alchemy packet 7150 with 1st,2nd,3th slot..
Am using:
Code:
InjectPacket("7150", "0203030D0E0F")
Func InjectPacket($opcode, $data, $security = "0100")
$size = Hex(StringLen($data) / 2, 4)
$size = StringMid($size, 3, 2) & StringMid($size, 1, 2)
$opcode = StringMid($opcode, 3, 2) & StringMid($opcode, 1, 2)
$packet = _HexToString($size & $opcode & $security & $data)
TCPSend($socket, $packet)
EndFunc
When I change security 0100 -> 0200 I didn't get DC, but nothin happen..
Any suggestions?
#Edit
In edx6 analyzer It's like this when I fuse in-game..
Code:
[C -> S][7150] 02 ................ 03 ................ 03 ................ 0D ................ 0E ................ 0F ................
Am investigated, that $packet is empty ;/
Before _HexToString it's:
Code:
0000507102000203030E0F10







