View Single Post
  #2  
Old 09-11-2005, 10:30 AM
vRandom
Sarnak
 
Join Date: Jun 2005
Posts: 91
Default

Does your variables table have this ?
Code:
INSERT INTO variables (varname, value, information) VALUES ('LoginType', 'Minilogin', 'Set this to Minilogin to login using a minilogin server :)');
And does your account table have this?
Code:
alter table account add minilogin_ip varchar(32) not null;
to add account:
Code:
insert into account (name,status, minilogin_ip) values('[user]',250,'127.0.0.1');
Or you can open the database and add the ip to your account record.

see this link for more info
http://www.eqemulator.net/forums/showthread.php?t=18707

second post has minilogin info


vRandom

edits for formating
Reply With Quote