Please That 'so important

10/15/2011 23:14 MasterOFtame#1
Please who can tell me how to make an account with the Microsft SQL server managment Studio [With the Image please]
10/16/2011 02:21 Yunchen#2
just use the newest server files,there is a program to create accounts even for such stupied peoples like you.
10/16/2011 03:44 M>M#3
and for the image go to the command theard u will find the images in the end of the theard ^.^
10/16/2011 05:46 Turtlefight#4
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