Hello,
I was following one of the guides here on this site to try to setup my own personal server to play around on. I was able to get everything working (or so it seemed). I did a fresh install of Titanium, I am using PEQ DB, and I am using the MiniLogin as the login service for the game.
I fire up the MiniLogin, then I run the Start.bat batch file and everything looks good from what I can tell. When I launch the game, I am able to put in the account name and password (which I did notice I can enter any password and it works apperently). Once I get to the server select screen however there are no servers listed. Below are copies of the config files code.
EQ Host Code
Quote:
[LoginServer]
Host=127.0.0.1:5999
|
Eqemu_config
Quote:
<?xml version="1.0"?>
<server>
<world>
<shortname>Emberwood</shortname>
<longname>The Emberwood Forest</longname>
<!-- address has to be specified for minilogin to work -->
<address>localhost</address>
<localaddress>127.0.0.1</localaddress>
<!-- Loginserver information. -->
<loginserver>
<host>localhost</host>
<port>5999</port>
<account></account>
<password></password>
</loginserver>
<!-- Sets the shared key used by zone/launcher to connect to world -->
<key>make up some random string of characters here</key>
<!-- Enable and set the port for the HTTP service -->
<http port="9080" enable="true" mimefile="mime.types"/>
</world>
<!-- Database configuration, replaces db.ini -->
<database>
<host>localhost</host>
<port>3306</port>
<username>*******</username>
<password>*********</password>
<db>peq</db>
</database>
</server>
|
LoginServer
Quote:
### --- 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=127.0.0.1
loginserver2=newlogin1.eqemulator.net
loginport=5999
loginport2=5999
worldname=The Emberwood Forest
worldaddress=127.0.0.1
locked=false
account=
password=
[WorldServer]
Defaultstatus=
Unavailzone=
[ChatChannelServer]
worldshortname=
chataddress=
chatport=
[LoginConfig]
ServerMode=MiniLogin
ServerPort=5999
|
I did some research here on the forums and I did see that if you are using titanium that you should be using port 5998 instead of 5999. The problem that I run into if I change all of the ports to 5998 is that when I launch EQ, I cant get past the login screen.
Any help would be greatly appreciated.