Create a new SQL-Query:
Code:
USE auth
GO
INSERT INTO dbo.Accounts(login_name,password,block,withdraw_remain_time,age,auth_ok,pcbang,last_login_server_idx,event_code,result)
VALUES('Your_Loginname', --The name you use to login to the game
'Your_md5_hash', --The Password you use to login to the game (coded with md5 hash)
0,0,18,1,1,1,0,1) --leave this
GO