View Single Post
  #2  
Old 03-08-2008, 12:32 AM
Aramid
Discordant
 
Join Date: May 2006
Posts: 356
Default

If you have cut and pasted your config file and the above ACTUALY shows what your config file is, then your problem is probably here:
Quote:
address>192.168.1.101</address
localaddress>127.0.0.1</localaddress
it should look like this....

<address>192.168.1.101</address>
<localaddress>127.0.0.1</localaddress>

To add the Server lock unlock code is this:

<!-- Server status. Default is unlocked -->
<!-- <locked/> -->
<unlocked/>

The above shows the server UNLOCKED

Thios would be locked:

<!-- Server status. Default is unlocked -->
<locked/>
<! <unlocked/> -->

make sure this goes in between

<world>


</world>

Also, if your going to run a public server you will need to add your account name and password in this part of the code.

<!-- Loginserver information. -->
<loginserver>
<host>eqemulator.net</host>
<port>5998</port>
<account>Your Server account Name on EMU Login Server</account>
<password>Your Server Password on Emu Login Server</password>
</loginserver>


I know, you may have left it out of your post for obvious reasons, I just wanted to be sure you were aware of it.
__________________
Random Segments of Code....

Last edited by Aramid; 03-08-2008 at 08:35 AM..
Reply With Quote