Someone else mentioned this in another thread but it wasn't applicable to me yet, this time it was.
You have to edit the Boot5zones.bat so they point to your ip, NOT localhost or 127.0.0.1. It is a little confusing because it says in the boot5zones.bat that you need to change to one of those if you are using minilogin, but this is only if you are going to be the only person connecting.
So, instead of this:
Code:
@echo off
if NOT exist spells_us.txt goto NOSPELL
start zone . 127.0.0.1 7995 127.0.0.1
start zone . 127.0.0.1 7996 127.0.0.1
start zone . 127.0.0.1 7997 127.0.0.1
start zone . 127.0.0.1 7998 127.0.0.1
start zone . 127.0.0.1 7999 127.0.0.1
exit
cls
:NOSPELL
echo You did not copy the spells_en.txt from your everquest directory to this one. Please do so or zones will crash on startup.
PAUSE
Do this (except put your IP instead of 10.22.101.121):
Code:
@echo off
if NOT exist spells_us.txt goto NOSPELL
start zone . 10.22.101.121 7995 10.22.101.121
start zone . 10.22.101.121 7996 10.22.101.121
start zone . 10.22.101.121 7997 10.22.101.121
start zone . 10.22.101.121 7998 10.22.101.121
start zone . 10.22.101.121 7999 10.22.101.121
exit
cls
:NOSPELL
echo You did not copy the spells_en.txt from your everquest directory to this one. Please do so or zones will crash on startup.
PAUSE