Thread: mini login
View Single Post
  #5  
Old 01-03-2007, 05:39 AM
Aerewen
Hill Giant
 
Join Date: Dec 2006
Posts: 110
Default

Quote:
<!-- Only specify these two if you really think you need to. -->
<address>125.173.129.244</address>
<localaddress>127.0.0.1</localaddress>
change that to
Code:
<!-- Only specify these two if you really think you need to. -->
<address>127.0.0.1</address>
<localaddress>127.0.0.1</localaddress>
and change:
Quote:
<!-- Loginserver information. Defaults shown -->
<loginserver>
<host>125.173.129.244</host>
<port>5999</port>
<account></account>
<password></password>
</loginserver>
to

Code:
 <!-- Loginserver information. Defaults shown -->
<loginserver>
<host>127.0.0.1</host>
<port>5999</port>
<account></account>
<password></password>
</loginserver>
problem you are having is that your world server is telling the minilogin to send clients to: 125.173.129.244 instead of 127.0.0.1 (localhost)

if you change those and re-start your world server, minilogin, and all zone.exe instances you should be fine.
Reply With Quote