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!

when making a account

Newbie Spellweaver
Joined
Aug 10, 2012
Messages
99
Reaction score
21
If it is the same error than him, and you have your windows firewall turned off it can be that you have the wrong ip or the wrong user/password in table.xml.

The last thing it could be is that your mssql server is not accepting remote connections or it's not binded to the tcp ports.

Check sqlserver configuration -> protocols for MSSQLSERVER -> TCP/IP should be enabled and in IP Adresses check that the ip you're going to use has the port 1433.
 
Newbie Spellweaver
Joined
Aug 5, 2012
Messages
98
Reaction score
5
thank you soo much Ozzy, finally i managed to log in:thumbup1:..the problem was in sql server config..thanks again
 
Initiate Mage
Joined
May 24, 2013
Messages
1
Reaction score
0
i can get in server using compactau.exe i can log into game no issue but cant relog but if i dont run compactau.exe i can get to log in screen then log it times out any ideas please help
 
Newbie Spellweaver
Joined
Jun 8, 2013
Messages
7
Reaction score
0
I cant login either, heres a screenshot of everything

MSSQL tcpip enabled and here are the rest

EDIT : It was a named instance so i had to change the port to the default one, 1433. Now I can login but it timesout.

EDIT 2 : I can now login and it gets to character creation screen but the Complete button in the end doesn't do anything.
 
Last edited:
Junior Spellweaver
Joined
Jan 4, 2012
Messages
110
Reaction score
6
MSSQL tcpip enabled and here are the rest

You set it up wrong. You have 1433 in TCP Dynamic Ports. 1433 should be in the "TCP Port" area, and the "TCP Dynamic Ports" area should be left blank.
 
Newbie Spellweaver
Joined
Jun 8, 2013
Messages
7
Reaction score
0
Oh sorry about this, I posted the same thing on 2 threads lol. All fixed now, after you helped me on the other thread.
 
Newbie Spellweaver
Joined
Oct 8, 2012
Messages
35
Reaction score
1
Code:
exec adduser 'master',0xa15b019f7ab9ba0e01482577acb76e90,'prompt','answer','truename',123123,'k@k.com',123123,'province','city',123123,'address',123123,0,'1998/01/01','qq',0xa15b019f7ab9ba0e01482577acb76e90
i used this to create master monster however any other acc i create even if i use the boi acc manager they all give me wrong password any help please...


also were are these stored procedures located ?

thanks
 
Last edited:
Joined
Feb 26, 2010
Messages
1,374
Reaction score
780
The ID and PW are both required to create the salt. When you create an account , pick your id, for example 'balthazar' and password 'mamamia' , combine them into 'balthazarmamamia' and md5 encrypt that string using , the result is
Code:
0x01f9aa95542b9f76326dec63689cf3c6
. That's what you use for passwords on new account.
 
Newbie Spellweaver
Joined
Oct 8, 2012
Messages
35
Reaction score
1
The ID and PW are both required to create the salt. When you create an account , pick your id, for example 'balthazar' and password 'mamamia' , combine them into 'balthazarmamamia' and md5 encrypt that string using , the result is
Code:
0x01f9aa95542b9f76326dec63689cf3c6
. That's what you use for passwords on new account.
[FIXED]

Thanks
the info worked a charm PunkS7yle, can create my own user details now :)
 
Last edited:
Back
Top