script to automatically account

03/18/2013 21:58 SoN-DeM#1
are u know can u help me pls
03/18/2013 22:37 JohnHeatz#2
I have no idea what are you asking, would you mind elaborating?
03/18/2013 22:51 SoN-DeM#3
When you got into the game account login id and password entered does not exist instead of saving it to the database db script, for example, that the last-rain do not have an account and
post-retirement account when you wrote it to save our database script automatically

I need an account automatically receive and scriptis
03/18/2013 22:53 SoNDeM#4
I need an account automatically receive and scriptis ( Please help me I could not find on the site )
03/19/2013 21:18 Prideness#5
As you say by yourself, the account does not excist in the database, so you will have to make it first, or log-in with an excisting account.
Code:
INSERT INTO PS_UserData.dbo.Users_Master(UserID,Pw,JoinDate,Admin,AdminLevel,UseQueue,Status,Leave,LeaveDate,UserType,Point,UserIp) 
VALUES ('".$username."','".$password."',GETDATE(),0,0,0,0,0,GETDATE(),'N',0,NULL)
Now, before running the query, replace the following things:
'".$username."' replace with your username
'".$password."' replace with your password

Or just edit the Users_Master table by yourself.. Although I think this is easier..