I could connect to the server, enter user and password, solve captcha, load characters and select one then log to the game.
But then in 60 seconds exactly. I am disconnected.
the dc I get is the "Disconnected!_2" one.
Code:
if(success != SocketError.Success) {
if(success != SocketError.WouldBlock) {
Log("Disconnected!_1");
changeMainTitle(Globals.CharName + " [Disconnected]");
return;
}
} else if(cl_recv_buffer.Size > 0) {
cl_security.Recv(cl_recv_buffer);
} else {
Log("Disconnected!_2");
changeMainTitle(Globals.CharName + " [Disconnected]");
return;
}






