Well, 1st off, the reason this is happening is that you already have an account with id of 0... Hence the duplicate message.
How are you trying to connect? If you're using the public login, then the account will be created automaticlly by the loginserver on your machine when someone connects, you dont need to manually create every account on the server.
If you feel you REALLY have to create accounts, do this..
Just skip the whole thing... Open up mysql and create the account manually..
from dos, run mysql:
mysql>use eq;
mysql>select max(id) from account; (this gives you the highest account number in the database)
mysql>insert into account set name='Yolet', password='passwordhere', status='whatever status you want', lsaccount_id='1 higher than the max you got';
There, you have created a new user account. Im not sure what youre trying to accomplish, if the account doesnt exist on the forums, it wont log you in anyways via the public login server...
__________________
Quitters never win, and winners never quit, but those who never win and never quit are idiots.
|