View Single Post
  #14  
Old 05-17-2007, 09:55 AM
Jiggawhoa144
Fire Beetle
 
Join Date: May 2005
Posts: 5
Default

ugh, I've followed your format exactly, and still no luck with the Minilogin finding the server. It can only find the server when it listens on port 3306, but then then world.exe just holds at "Connecting to MySQL..." :\ I know I have my IP's correct, I think I'm just having issues with getting the ports to match up correctly. I currently have the files setup as is....

eqemu_config.xml :

Code:
<?xml version="1.0">
<server>
	<world>
	    <shortname>Blah</shortname>
	    <longname>MiniLogin</longname>
	           
	<!-- Only specify these two if you really think you need to. -->
	    <!--<address>192.168.0.102</address>-->
	    <!--<localaddress>127.0.0.1</localaddress>-->
	   
	<!-- Loginserver information.  -->
	    <loginserver>
	        <host>129.168.0.102</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>username</username>
	    <password>password</password>
	    <db>peq</db>
	</database>
</server>
LoginServer.ini :

Code:
[LoginServer]
loginserver=192.168.0.102
loginserver2=newlogin1.eqemulator.net
loginport=5999
loginport2=5999
worldname=MiniLogin
worldaddress=192.168.0.102
locked=false
account=
password=

[WorldServer]
Defaultstatus=
Unavailzone=

[ChatChannelServer]
worldshortname=
chataddress=
chatport=

[LoginConfig]
ServerMode=minilogin
ServerPort=5999
and eqhost.txt :

Code:
[LoginServer]
Host=192.168.0.102:5999
Yeah, so when world.exe tries to connect to the LS I get a 'could not connect : error 10061' message. Like I said, I've gotten MiniLogin to show that there's a server with other port settings, but then world.exe won't connect to it. And yes, the ports are properly forwarded. Any help would be appreciated. Thanks

Last edited by Jiggawhoa144; 05-17-2007 at 06:01 PM..
Reply With Quote