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] How to open password for login

Joined
Mar 22, 2008
Messages
830
Reaction score
158
How about this:
-Add two extra fields to the accounts' table with the names WEB_ID and WEB_PW.
-Registration script that will register a player with ID into WEB_ID and Password into WEB_PW. It also generates a completely random userID that cannot be guessed.
-Use a login system integrated into the launcher.
-The launcher will login with your WEB_ID and WEB_PW, but it will send userID into the parameter of the client.

tl;dr
fu. read the post.
 
Last edited:
Joined
Mar 11, 2007
Messages
903
Reaction score
1,251
How about this:
-Add two extra fields to the accounts' table with the names WEB_ID and WEB_PW.
-Registration script that will register a player with ID into WEB_ID and Password into WEB_PW. It also generates a completely random userID that cannot be guessed.
-Use a login system integrated into the launcher.
-The launcher will login with your WEB_ID and WEB_PW, but it will send userID into the parameter of the client.

tl;dr
fu. read the post.

I had thought a similar thing, aside from putting that into the accounts table, which you won't need to do
 
Junior Spellweaver
Joined
Aug 9, 2004
Messages
114
Reaction score
0
hmmm.. i think you have to set cookies with a good encryption
 
Junior Spellweaver
Joined
Jul 27, 2005
Messages
112
Reaction score
80
I use a neat method and its simple too.

Registration page:
takes username+password hash them together = userid

userid is now a re-tarted long string of crap no one would remember or know because no one ever sees it.

Launcher:
same thing user+pass gets hashed on the launchers end. sends it to raiderz.exe

took me 10min tops to write up launcher in c#
 
Last edited:
Joined
Mar 22, 2008
Messages
830
Reaction score
158
I use a neat method and its simple too.

Registration page:
takes username+password hash them together = userid

userid is now a re-tarted long string of crap no one would remember or know because no one ever sees it.

Launcher:
same thing user+pass gets hashed on the launchers end. sends it to raiderz.exe

took me 10min tops to write up launcher in c#
You are kinda late on the news, my release does the same and this method has been said plenty of times before..
 
Newbie Spellweaver
Joined
Jul 29, 2005
Messages
12
Reaction score
5
anyone know how to disable auto account creation?

edit..nvm found it.
 
Last edited:
Back
Top