[Help] Adding Accounts

03/15/2009 10:02 jag21#1
Ok when I add an account in navicat and i try to log in the game...it keeps saying invalid acc what can my problem be?
03/15/2009 10:25 zuikislol#2
you have to have the special generator for the password, becasue if you put the password as test iw wont work, in the databse test=53b6320eb06e2c62888a6d1739cd24bd so try that if you dont have any register page yet.
03/15/2009 10:34 jag21#3
thx..but i solved the prob
03/15/2009 14:02 zuikislol#4
ok np...
03/15/2009 23:27 forcer#5
sql query for inserting accounts into DB:
insert into account.account (name, password) values ('USERNAME',md5(concat('PASSWORD',char(0xA3,0xAC,0xA1,0xA3),"fdjf,jkgfkl"))

replace USERNAME with account name
and PASSWORD with account password in plain text.

for login test, password test use:
insert into account.account (name, password) values ('test',md5(concat('test',char(0xA3,0xAC,0xA1,0xA3),"fdjf,jkgfkl"))
03/15/2009 23:34 zuikislol#6
well this is a better explanation than mine.