Small update, maybe it's useful for someone:
- Added a TCP Server in the PacketLogger to communicate with the Client (proxy-like).
- For IP:Port look in titlebar of the PacketLogger.
Actually pretty easy to use. You can connect as much clients as you want to this server.
I also uploaded in the archive some example AutoIt scripts. Maybe it's useful for someone.
So first of all: All packets have the same format as NosTale (Space splitted)
The first item is a number: 0 for receive, 1 for send Packet.
E.g.:
PHP Code:
packet = receiveFromPacketLogger();
splitted = split(packet, ' ');
type = splitted[0];
header = splitted[1];
if type == 0 then "RECEIVE PACKET"
if type == 1 then "SEND PACKET"
Same is for sending back to PacketLogger:
PHP Code:
sendPacket = "1 walk 22 33 1"; <- 1 is for send
recvPacket = "0 gold 2329392"; <- 0 is for recv
sendToPacketLogger(sendPacket);
sendToPacketLogger(recvPacket);
That's it. You can do whatever you want with it.
Have fun.
Edit: Added small AutoIt API.