Most recent edit on 2006-11-25 18:21:09 by BlehWiki [Changed MiniLogin reference from 6.1 to 6.2]
Additions:
You can download it here: click to download latest version of MiniLogin∞
Deletions:
You can download it here: click to download latest version of MiniLogin∞
Edited on 2005-05-27 11:54:25 by LethalEncounter
Additions:
If you have any problems, be sure to consult the MiniLoginTroubleshooting page.
Edited on 2005-05-27 00:31:18 by RangerDown
Deletions:
loginserver=127.0.0.1
loginport=5999
Code:
Edited on 2005-05-27 00:27:53 by RangerDown
Additions:
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;
UPDATE account SET minilogin_ip='127.0.0.1' WHERE name='edgar1898';
INSERT INTO account (name,STATUS, minilogin_ip) VALUES('edgar1898',250,'127.0.0.1');
Back to MiniLogin Category
Deletions:
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;
update account set minilogin_ip='127.0.0.1' where name='edgar1898';
insert into account (name,status, minilogin_ip) values('edgar1898',250,'127.0.0.1');
MiniLogin
Edited on 2005-05-26 21:54:06 by LethalEncounter
Additions:
You can download it here: click to download latest version of MiniLogin∞
Deletions:
You can download it here: click to download latest version of MiniLogin∞
Edited on 2005-05-26 21:42:46 by LethalEncounter
Additions:
MiniLogin
Oldest known version of this page was edited on 2005-05-26 21:40:10 by LethalEncounter []
Page view:
The following guide will help you setup
MiniLogin from scratch. This document assumes that your database is not setup to use a
MiniLogin server. You can safely ignore database update errors such as: "Duplicate entry '
LoginType' for key 1" or "Duplicate column name 'minilogin_ip'". This just means that whoever you received your database from had already run the queries. This guide is also posted on the forums as well. Now we begin:
To start you will need to execute the following mysql queries:
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;
Note: The following examples assume you want to use minilogin to play on the account named edgar1898 and you will be logging into it from the same computer your running minilogin on.
If you want to login with an existing account:
1. Put the ip address of the computer your using to login in the minilogin_ip field of the users account you wish to play.
The SQL code for this is:
update account set minilogin_ip='127.0.0.1' where name='edgar1898';
If you want to create a new account and login with it:
1. Insert the new account into the database. (This example also assumes you wish to give the user access to all commands on the server, change the 250 to another level if you dont)
The SQL code for this is:
insert into account (name,status, minilogin_ip) values('edgar1898',250,'127.0.0.1');
*Hint* Whenever the user connects to minilogin, it will display their ip in the console window of minilogin, that IP must match the ip you put in the account table. Whenever your doing one of the above steps make sure the ip addresses are the same!
1. Once you have done that download
MiniLogin and change your eqhost.txt file to 127.0.0.1:5999
You can download it here:
click to download latest version of MiniLogin∞
2. Open your server's
LoginServer.ini file and change the loginserver and loginport as follows:
loginserver=127.0.0.1
loginport=5999
Thats it! You should be able to login and play normally!
If your world doesnt display something like Connected to
LoginServer: 127.0.0.1:5999 and it does not show up in the server list, make sure your
LoginServer.ini file for your server and for
MiniLogin (you can use the same on if the server and minilogin is in the same directory) looks similiar to this:
Code:
[
LoginServer]
loginserver=127.0.0.1
loginserver2=newlogin1.eqemulator.net
loginport=5999
loginport2=5999
worldname=Name of server here
worldaddress=Your IP Address here
locked=false
account=
password=
[
WorldServer]
Defaultstatus=
Unavailzone=
[
ChatChannelServer]
worldshortname=
chataddress=
chatport=
[
LoginConfig]
ServerMode=
MiniLogin
ServerPort=5999