there is one written in c++.
You should write your own proxy which is for advanced coders.
But if you are able to take packets with phConnector analyze A101 (Login Packet)
You can analyze it like this ;
PHP Code:
readPacket.ReadByte()
readPacket.ReadByte()
readPacket.ReadChars(readPacket.ReadUInt16())
readPacket.ReadByte()
readPacket.ReadByte()
Dim SvrID = readPacket.ReadUInt16()
Dim NameLen = readPacket.ReadUInt16()
Dim Name As Char() = readPacket.ReadChars(NameLen)
Dim RealName As New String(Name)
Dim CurOnServ As Integer = readPacket.ReadUInt16()
Dim MaxOnServ As Integer = readPacket.ReadUInt16()
Dim ServStat As Integer = readPacket.ReadByte()
Peace.