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!

AbbyGamerz,

Skilled Illusionist
Joined
Oct 3, 2011
Messages
300
Reaction score
48
izi mai frend.


Here on MMatchServer_Login.cpp on CSCommon solution.
Find :
Code:
void MMatchServer::OnMatchLogin

Some lines down you will find this line

Code:
if (strcmp(szDBPassword, szPassMd5) != 0)
//if(strcmp(szDBPassword, szPassword)) //md5

so , u need to change it to :

Code:
[COLOR="#FF0000"]//[/COLOR]if (strcmp(szDBPassword, szPassMd5) != 0)
if(strcmp(szDBPassword, szPassword)) //md5

Solved :b
 
Upvote 0
Back
Top