all Done, no error... login succes, char succes, map stuck... still can't connect server.
Hercules / rAthena
The client's login and character select will function. But after selecting a character, the client will sit for a moment and then time out. This is because Gravity is no longer using the ZC_ACCEPT_ENTER3 packet and went back to using the older ZC_ACCEPT_ENTER2. So you have to edit the source to have it use the 2nd version of ACCEPT_ENTER or else the timeout issue will happen. Im not going into tech details on how to apply the change. Thats for you to do or just wait for someone to do it.
what mean for that?
#if PACKETVER < 20080102
const int cmd = 0x73;
#elif PACKETVER < 20141022
const int cmd = 0x2eb;
#else
const int cmd = 0xa18;
to
#if PACKETVER < 20080102
const int cmd = 0x73;
#else
const int cmd = 0x2eb;
it''s right?