| 
				  
 Here's everything that's concerned with running a server: (i'll only paste the things that had to be changed from default)
 Boot5zones.bat
 
 start zone . localhost 7995 localhost
 start zone . localhost 7996 localhost
 start zone . localhost 7997 localhost
 start zone . localhost 7998 localhost
 start zone . localhost 7999 localhost
 exit
 cls
 
 db.ini
 
 [Database]
 host=localhost
 user=Mandulum
 password=michael
 database=eq
 compression=off
 
 loginserver.ini
 
 [LoginServer]
 loginserver=localhost
 loginserver2=localhost
 loginport=5999
 loginport2=5999
 worldname=Everquest
 worldaddress=localhost
 locked=false
 account=
 password=
 
 miniloginaccounts.ini
 
 141.109.80.145 Mandulum michael
 141.109.80.145 eqemu eqemu
 141.109.80.100 Loganil ryan
 141.109.80.108 Grastyx sean
 
 foo.sql
 
 -- MySQL dump 8.22
 --
 -- Host: localhost    Database: eq
 ---------------------------------------------------------
 -- Server version	3.23.55-nt
 
 --
 -- Table structure for table 'account'
 --
 
 CREATE TABLE account (
 id int(11) NOT NULL auto_increment,
 name varchar(30) NOT NULL default '',
 charname varchar(64) NOT NULL default '',
 packencrypt blob NOT NULL,
 password varchar(50) NOT NULL default '',
 status int(5) NOT NULL default '0',
 lsaccount_id int(11) unsigned default NULL,
 gmspeed tinyint(3) unsigned NOT NULL default '0',
 PRIMARY KEY  (id),
 UNIQUE KEY name (name),
 UNIQUE KEY lsaccount_id (lsaccount_id)
 ) TYPE=MyISAM;
 
 --
 -- Dumping data for table 'account'
 --
 
 
 INSERT INTO account VALUES (1,'Mandulum','','','michael',10,0,0);
 INSERT INTO account VALUES (2,'Loganil','','',ryan',10,1,0);
 INSERT INTO account VALUES (3,'eqemu','','','eqemu',200,2,0);
 INSERT INTO account VALUES (4,'Grastyx','','','sean',10,3,0);
 
 ---------------------------------------------------------------------------------
 
 That should be all the releveant stuff, it's at least everything that i've modified (except for eqhosts file)
 
			
			
			
			
				  |