View Single Post
  #8  
Old 05-07-2010, 04:36 PM
Zandig's Avatar
Zandig
Hill Giant
 
Join Date: Jun 2006
Location: New York City
Posts: 180
Default

Your config files look almost identical to mine.

However in your 'eqemu_config.xml' you have this section:

Code:
<?xml version="1.0"?>
<server>
<world>

<shortname>walkworld</shortname>
<longname>walks EQ world of madness</longname>


<!-- address has to be specified for minilogin to work -->
<address>localhost</address>
<localaddress>localhost</localaddress>

<!-- Loginserver information. -->
<loginserver>
<host>localhost</host>
<port>5999</port>
<account></account>
<password></password>
</loginserver>
I have it this way:

Code:
<?xml version="1.0">
<server>
        <world>
                <shortname>minilogin</shortname>
                <longname>My Minilogin</longname>
                
                <!-- Only specify these two if you really think you need to. -->
		<address>127.0.0.1</address>
		<localaddress>127.0.0.1</localaddress>
		
		<!-- Loginserver information.  -->
        <loginserver>
		<host>127.0.0.1</host>
		<port>5999</port>
		<account></account>
		<password></password>
        </loginserver>
Reply With Quote