Hi,
Can anyone help me make this work?
This is my packets.h
#ifndef PACKETVER
#define PACKETVER 20170614
#endif
#ifndef PACKETVER_RE
/// From this point on only kRO RE clients are supported
#if PACKETVER > 20151104
#define PACKETVER_RE
#endif
#endif
#if PACKETVER >= 20110817
/// Comment to disable the official packet obfuscation support.
/// This requires PACKETVER 2011-08-17 or newer.
#ifndef PACKET_OBFUSCATION
#define PACKET_OBFUSCATION
I can get to character select screen but I get this error after choosing a character:
[Info]: Subnet check ["ip address"]: WAN
[Warning]: clif_parse: Received unsupported packet (packet 0x092c, 19 bytes received), disconnecting session #8.
[Info]: Closed connection from '"ip address"'.
I did not enable "Disable Packet Encryption" in NEMO and I am using latest rAthena from git.
If I disable packet encryption on client and disable packet obfuscation on server, I get this error:
[Info]: Subnet check [ip]: WAN
[Warning]: clif_parse: Received unsupported packet (packet 0x05bb, 19 bytes received), disconnecting session #8.
[Info]: Closed connection from 'ip'.
Do I need to change other files in server side or client side?
What is the stable client that you recommend?
Thanks in advance