Two things can be done here.. First I know it said to leave a space at the end of the last letter, but also note that after you press space, DONT press the enter key, as it will be read into the file as a newline character, which WILL cause 1017...
The other thing is to actually insert the account into the DB... There are two ways to do this... The first:
Open up a dos command and change directory to the directory that contains the world.exe file... Now type the following:
Code:
world adduser eqemu eqemu 200
Where the first eqemu is your intended username and the second is the intended password...
The second method is as follows:
Open up a dos command window and type the following:
Code:
cd c:/mysql/bin
mysql -u root mysql
USE eq; (assuming eq is the name of your DB)
INSERT INTO account SET name='eqemu', password='eqemu', status=200;
quit
Note that again eqemu is to be replaced with whatever your UN and PW are in your miniloginaccounts.ini file are... Hope this helps>>>>>>>>>
One more thing of note, you can change everything to localhost or 127.0.0.1 if you are running all the parts of the server from the same pc.. They dont even need to know the internal IP. They just need to know that it is on the same machine..