• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[HELP] cannot log into my game server

Newbie Spellweaver
Joined
Feb 10, 2009
Messages
16
Reaction score
0
Dear fellow members,

i have a issue with being able to login to my own server.
i created accounts with

serustest
kikugalanettest
flighttest
salttest

but when i load up my server client it says account does not excist or wrong password
i did use md5 on all
also did i use dbo.createaccount to enter a name and the md5 created password
also ports have been forwarded

what am i doing wrong?
ive been struggling to get it work for 3 days in a row.
please help me solve this mayor problem :(
 
Last edited:
Skilled Illusionist
Joined
May 11, 2011
Messages
316
Reaction score
28
you use for Password: YOURSALTyourpassword put that in md5

exp: KIKUSALTmypassword = MD5-Hash: 42324dc572ba39edcef096d777ec444c
 
Newbie Spellweaver
Joined
Feb 10, 2009
Messages
16
Reaction score
0
how do i find out the salt of my server files because i also been searghing for that and thanks for your fast reply and help Ratpack
 
Skilled Illusionist
Joined
May 11, 2011
Messages
316
Reaction score
28
search in Neuz.cpp for HashMD5

you found something like this:

void CNeuzApp::HashMD5( char* szResult, LPCTSTR szPWD )
{
char szBuffer[256];
char* szKey = "YOURSALTKEY";
sprintf( szBuffer, "%s%s", szKey, szPWD );
md5( szResult, szBuffer );
}


Not so hard to find it ;)
 
Newbie Spellweaver
Joined
Feb 10, 2009
Messages
16
Reaction score
0
i looked it up thanks! i found

void CNeuzApp::HashMD5( char* szResult, LPCTSTR szPWD )
{
char szBuffer[256];
char* szKey = "patom";

sprintf( szBuffer, "%s%s", szKey, szPWD );
md5( szResult, szBuffer );
}

SOLVED! thanks RatPack!
 
Last edited:
Back
Top