Hello
First of all, I apologize for my English, it might be a bit bad.
This error is in all available versions, free and non-free, and many people face it. Marty Sama did not solve this error except in version 5.8, and despite that, there are many versions with this error.
I searched for the error because it is annoying when I modify the coordinates of something and I want it somewhere I need to disconnect the client more than once and despite that it tells me that the account is already connected How is that and I have exited the client
The solution is simple:
Open cmt_general.cpp
search:
case SCMD_QUIT:
ch->ChatPacket(CHAT_TYPE_COMMAND, "quit");
break;
change with:
case SCMD_QUIT:
ch->ChatPacket(CHAT_TYPE_COMMAND, "quit");
if (d)
d->DelayedDisconnect(3);
break;
Be careful, you will encounter an error with the spaces. Arrange the spaces as the file needs them yourself.
Please do not post off-topic responses. Say something good or stay silent forever.
Hello
First of all, I apologize for my English, it might be a bit bad.
This error is in all available versions, free and non-free, and many people face it. Marty Sama did not solve this error except in version 5.8, and despite that, there are many versions with this error.
I searched for the error because it is annoying when I modify the coordinates of something and I want it somewhere I need to disconnect the client more than once and despite that it tells me that the account is already connected How is that and I have exited the client
The solution is simple:
Open cmt_general.cpp
search: case SCMD_QUIT: ch->ChatPacket(CHAT_TYPE_COMMAND, "quit"); break; change with: case SCMD_QUIT: ch->ChatPacket(CHAT_TYPE_COMMAND, "quit"); if (d) d->DelayedDisconnect(3); break;
Be careful, you will encounter an error with the spaces. Arrange the spaces as the file needs them yourself.
Please do not post off-topic responses. Say something good or stay silent forever.