• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Error in Nicaw AAC

lucasbrow

New Member
Joined
Feb 22, 2010
Messages
2
Reaction score
0
I'm using Nicaw AAC, the site is perfect but I have a problem in creating acc ..

When I create account in site, i can login SITE normally and create the character, but when I enter the server appears that the password is wrong .. I look in the database in mysql and I see that the password was completely different from what I had put

An example, I created an acc with the password "SENHA123" logon the site and creat my character, but when I enter the game says that the password is wrong. Looking at the database the password is "e7d80ffeefa212b7c5c55700e4f7193e"

Anyone can help me?

Sorry for my bad english :P
 
Well its probably because in the config the password saving method is MD5 which is a way of encrypting strings. That way if your database would be hacked the passwords would still be safe.

Could it be that in the site config you've set an MD5 "hash" and that in the server config you set passwords to be saved "plain"?
That way the server doesn't decrypt the password and tries to login using:
XXXX (your accnr/name)
e7d80ffeefa212b7c5c55700e4f7193e (the pass from your database)

I know gesior uses the server config check these things maybe Niwac sets them in a seperate config for just the site?

I hope this helped, Repp ++ would be appreciated if it did.
 
Thanks man .. Looking config.inc I see the following line:

# Must correspond to your OTServ configuration
# Options: plain, md5, sha1
$cfg['password_type'] = 'md5';

Just changed to plain that everything went well =)

Thanks again: P
 
Back
Top