Quote:
Originally Posted by Yeormom
This topic helped fix all my issues that were left at hand creating a beautifully working minilogin. If you plan on playing on another server other than the server hosting EQemu, change worldaddress to the computers IP address as well as the localhost in the eqhost.txt on clients and bat files and you've got a LANable minilogon. Great work. I think this deserves a sticky!
|
Thanks to Yeormom.
For an EQEmu LAN server (only hosting the game) change the following settings:
eqhost.txt on client pc:
Quote:
[Registration Servers]
{
"192.168.1.1:5999"
}
[Login Servers]
{
"192.168.1.1:5999"
}
|
Loginserver.ini on host:
Quote:
# READ README.TXT
[LoginServer]
loginserver=192.168.1.1
loginport=5999
worldname=my minilogin test
worldaddress=192.168.1.1
locked=false
account=eqemu
password=eqemu
[WorldServer]
Defaultstatus=0
Unavailzone=
[LoginConfig]
ServerMode=Standalone
ServerPort=5999
UplinkAddress=
UplinkPort=
UplinkAccount=
UplinkPassword=
|
db.ini on host:
Quote:
[Database]
host=localhost
user=MySQLuser
password=MySQLpass
database=eq
compression=off
|
Boot5zones.bat on host:
Quote:
REM:--------------Start-----------------------
@echo off
if NOT exist spells_us.txt goto NOSPELL
start zone . 192.168.1.1 7995 192.168.1.1
start zone . 192.168.1.1 7996 192.168.1.1
start zone . 192.168.1.1 7997 192.168.1.1
start zone . 192.168.1.1 7998 192.168.1.1
start zone . 192.168.1.1 7999 192.168.1.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
REM:---------------END------------------------
|