View Single Post
  #21  
Old 11-23-2008, 01:57 PM
Furinex
Hill Giant
 
Join Date: Apr 2002
Location: Rochester, NY
Posts: 178
Default

Alright, Here's the complete setup.

At first I was using the Most recent release from the download page, EQ Emu 1129. Then I was told to look into SVN because I was getting a bunch of Rule errors. That fixed that.

Loginserver.ini

Code:
 ### --- This file tells world.exe what loginserver to connect to.
### --- Leave the account and password field BLANK.

### --- Public Login is un-supported as is LAN playing. We reccomend using the EQEmu.net Loginserver ALWAYS.

### --- NOTE: Starting 6-1-2002, you can no longer use the word "Server" in worldname.
### --- NOTE2: the word "Server" is added to each server automaticly.

# READ README.TXT

[LoginServer]
loginserver=192.168.2.2
loginserver2=newlogin1.eqemulator.net
loginport=5999
loginport2=5999
worldshortname=Furinex
worldname=DDG-67 USS COLE
worldaddress=192.168.2.2
locked=false
account=
password=

[WorldServer]
Defaultstatus=
Unavailzone=

[ChatChannelServer]
worldshortname=Furinex
chataddress=
chatport=

[LoginConfig]
ServerMode=MiniLogin
ServerPort=5999
eqemu_config.xml

Code:
<?xml version="1.0">
<server>
	<world>
	    <shortname>Furinex</shortname>
	    <longname>Furinex - PEQ Based DB, live-like</longname>
	           
	<!-- Only specify these two if you really think you need to. -->
	    <address>192.168.2.2</address>
	    <localaddress></localaddress>
	   
	<!-- Loginserver information.  -->
	    <loginserver>
	        <host>192.168.2.2</host>
	        <port>5999</port>
	        <account></account>
	        <password></password>
	    </loginserver>

	    <!-- Sets the shared key used by zone/launcher to connect to world -->
	    <key>some long random string</key>

	    <!-- Enable and set the port for the HTTP service. -->
	    <http port="9080" enabled="true" mimefile="mime.types" />
	</world>

	<!-- Database configuration, replaces db.ini. -->
	<database>
	    <host>localhost</host>
	    <port>3306</port>
	    <username>root</username>
	    <password>*****</password>
	    <db>peq</db>
	</database>
</server>
</xml>
Config.ini (not sure if this even matters but here it is)

Code:
# READ README.TXT!

[Database]
host=localhost
user=root
password=pepper
database=peq
compression=off

[General]
quests=H:\Servers\EverQuest Emulator\EQEmu-0.7.0-1129\EQEmu-0.7.0-1129\EQEmu-0.7.0-1129\quests
wordwrap=0
Using as a start sequence a start.bat file that looks like this:

Code:
@echo off
start minilogin.exe
start world.exe
echo Wait for World to finish loading... Press Enter when done.
pause
start eqlaunch.exe zones
exit
Obviously using Minilogin.exe, world.exe and eqlaunch.exe. Using CVN of PEQ's database. Most recent, like... this morning as a matter of fact when I tried re-sourcing my entire database... What else can I tell you that might help?

(No i dont compile my own...)
Reply With Quote