Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Help] Ep3.5 Login Error

Initiate Mage
Joined
Mar 12, 2018
Messages
5
Reaction score
1
I don't know where I made a mistake.
I used the source code on this link.
please help!

 

Attachments

You must be registered for see attachments list
Initiate Mage
Joined
Aug 3, 2014
Messages
6
Reaction score
5
Probably using an wrong Client?
Well this is where it fails:

Code:
[COLOR=#666666]if(m_RecvPacket.IsPacketEncoded() == FALSE) {...}[/COLOR]else if(m_RecvPacket.IsValidPacket() == TRUE) { ...}
else
{    // Encoded PacketÀÌÁö¸¸ À¯È¿ÇÏÁö ¾ÊÀº ÆÐŶÀÌ´Ù.
    Close(0x10001, TRUE);

    char    szSystemLog[256];
    sprintf(szSystemLog, "[Error] CIOCPSocket::OnReceive [COLOR=#417394]invalid[/COLOR] [COLOR=#417394]packet[/COLOR], SocketIndex[%d]\r\n", m_nClientArrayIndex);
    g_pGlobal->WriteSystemLog(szSystemLog);
    DBGOUT(szSystemLog);
    return;
[COLOR=#666666]}[/COLOR]
Also make sure that the files in your Server Folder and Client Folder are equal.

PS. You aren't the first one with that Error try the Search Function 8)
 
Upvote 0
Initiate Mage
Joined
Mar 12, 2018
Messages
5
Reaction score
1
I'm using the client ep3.5.5.1
Opening game when I change the aceonline.atm. I want to use the files I have compiled.
 
Upvote 0
Initiate Mage
Joined
Mar 12, 2018
Messages
5
Reaction score
1
yeah, it was different on the client and server side. I'm gonna try and compile again.

Client:
Code:
#define SIZE_XOR_ENCODE_BYTES    128
#define XOR_ENCODE_BYTES "vmdlfjhud830pwkldlkv[]f\20jdmvld;sk,mcuie8rijmfvkidfo340-pflcl,;dsd]u03u40jvconvn08892h0nnlsnldsf/,;vms[pf-2fjd]u03u40jvconvn082"

Server:

Code:
#define SIZE_XOR_ENCODE_BYTES    128
#define XOR_ENCODE_BYTES "045-8101F0253#4F850+20A075900445C54145B534/?^?066C65164F19%015E4F5?C0152E@05C1C1?{4075C114B16504D9D00445F001455}580B4407150051"
 
Upvote 0
Back
Top