I *think* you're asking for help on the database setup...if so...
1) Log into your database:
2) Switch to the database you're using (I called mine "eq"):
3) Use these commands to setup the database to allow minilogin:
Quote:
INSERT INTO variables (varname, value, information) VALUES ('LoginType', 'Minilogin', 'Set this to Minilogin to login using a minilogin server :)');
alter table account add minilogin_ip varchar(32) not null;
|
4) As you've not created accounts in your database for you to log in with yet, you'll need to use this to initially create your accounts:
Quote:
insert into account (name,status, minilogin_ip) values('edgar1898',250,'127.0.0.1');
|
You'll need to replace 'edgar1898' with your login name and '127.0.0.1' with the ip address from your client machine.
5) Run minilogin.exe. You should see that it is up and running in a command box.
6) Run world.exe. You should see a line in there that it connected to the login server, and the box in #5 should say that it connected to the world.exe box in this step.
7) Run your boot5zones.bat file. You should see that they connect to your world.exe in #6, and the world.exe box in #6 should show all your zones connecting to it.
Note to anyone else - I'm doing this from memory; correct me if I'm wrong.