Not sure if this will fix your problem. But I am guessing your trying to set it up on the Public Login server. In which case I can see a couple of problems with your config. Please see below for the amended version.
Also any lines that start <!-- Some Text --> are not read by the emulator there just for remarks. But it will read any line that starts <Some Text>
Hope that helps a little. At first its very confusing. Not long started my own server. But it does get easier…
<?xml version="1.0">
<server>
<world>
<shortname>MS REV</shortname>
<longname>MS Revived</longname>
<!-- Only specify these two if you really think you need to. (read: You don't) -->
<address>lindenr.dyndns.ws</address>
<!-- <localaddress>192.168.1.47</localaddress> -->
<!-- Loginserver information. Defaults shown -->
<loginserver>
<host> new.eqemulator.net </host>
<port>5998</port>
<account></account>
<password></password>
</loginserver>
<!-- Sets the ip/port for the tcp connections. Both zones and console (if enabled). Defaults are shown -->
<tcp ip="localhost" port="9000" telnet="disable"/>
<!-- 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. Defaults are shown -->
<http port="9080" enabled="false" mimefile="mime.types" />
</world>
<!-- Database configuration, replaces db.ini. Defaults shown -->
<database>
<host>localhost</host>
<port>3306</port>
<username>root</username>
<password>*****</password>
<db>eq</db>
</database>
</server>
|