| 
				  
 you have to run some sql to get minilogin to work with the zip file version of the released peq db.
 insert into variables (varname, value, information) values ('LoginType', 'Minilogin', 'Public or Minilogin for value');
 alter table account add minilogin_ip varchar(32) not null;
 insert into launcher values ('zone', 6);
 
 add any accounts you need:
 insert into account (name, password, status, minilogin_ip) values ('yourname', 'yourpassword', 250, 'your ip'); // IP could be 127.0.0.1 or the actual IP
 
 Tips:
 copy in the .map files to \eqemu\Maps\ folder
 copy in quest perl files to \eqemu\quests\ folder
 copy the \eqemu\quests\plugins\ folder to \eqemu\plugins\ folder
 copy spells_en.txt and spells_us.txt to \eqemu\ folder
 don't overwrite the opcodes.conf file with the minilogin version
 
 to change from the default rules without compiling the source yourself:
 insert into rule_sets values (1, 'default');
 insert into rule_values values (1, 'Character:LeaveNakedCorpses', 'true');
 insert into rule_values values (1, 'Character:ExpMultiplier', 1.5);
 
			
			
			
			
				  |