I noticed a problem on my server that one person had before, the problem is this;
Bitte melden Sie sich an, um diesen Link zu sehen.
As you can see, when I close the game with the shutdown command, if I try to log in, a packet error occurs and the game closes. I think this problem occurs after removing packet encryption (cryptopp).
The cause of the problem is that AUTH core does not establish P2P connection like other cores, it only establishes connection with DB. Therefore, the P2P packet sent during the shutdown command does not reach AUTH.
The solution is as follows;
open game/cmd_general.cpp and search;
and add this on top of " Shutdown(10); ";
open game/input_db.cpp and search;
and add below this;
open common/tables.h and search;
and add below this;
search again;
add below again this;
open db/clientmanager.cpp and search;
add below this;
Done.
After the fix, it will now give a popup message instead of closing the game;
Bitte melden Sie sich an, um diesen Link zu sehen.