ok let see here...
Code:
[Error] Zone bootup FAILED!
This is due to the fact you didn't define a zone when starting zone.exe
Code:
D:\EQEmu>zone 7999 192.168.0.226 7999 192.168.0.226
the proper syntax for loading zone.exe is
from command prompt:
Code:
D:\eqemu>zone $zonesn$ externalIP <port> internalIP
if your running this on a lan, and the sql database is on the same machine as the zone.exe and world.exe i find it works alot better to replace every internalip with localhost, and externals to your computers ip address on the lan. When loading zone.exe you ahve to define a zone to load, only if you want a constant zone up and running would you put the zones short name where $zonesn$ goes in the syntax, however unless you have a reason to keep a zone up constantly, i.e. want to keep spawn timers running, or have quest mobs that pop at certain times etc... the best thing to do is just set zone.exe to autoload/unload zones as they are needed. in order to do this you define your $zonesn$ as simply "." (without quotes) so to manually start a zone.exe you would type.
Code:
D:\eqemu>zone . 192.168.0.226 7995 localhost
remember each zone.exe needs its own port.
Loginserver.ini
Code:
[LoginServer]
loginserver=192.168.0.226
loginport=5999
worldname=shocker happy fun
worldaddress=192.168.0.226
locked=false
[WorldServer]
Defaultstatus=0
Unavailzone=
[LoginConfig]
ServerMode=Standalone
ServerPort=5999
UplinkAddress=
UplinkPort=
UplinkAccount=
UplinkPassword=
Rec. Change
Code:
[LoginServer]
loginserver=localhost
loginport=5999
worldname=shocker happy fun
worldaddress=192.168.0.226
locked=false
[WorldServer]
Defaultstatus=0
Unavailzone=
[LoginConfig]
ServerMode=Standalone
ServerPort=5999
UplinkAddress=
UplinkPort=
UplinkAccount=
UplinkPassword=
[ChatChannelServer]
ChatChannelServer=localhost
Also noticed you were missing ChatChannelServer, this can give errors when loading as well although i didn't see it in your output, it can cause errors in the future.
Boot5Zones.bat
Code:
start zone.exe . 7999 192.168.0.226 7995 127.0.0.1
start zone.exe . 7999 192.168.0.226 7996 127.0.0.1
start zone.exe . 7999 192.168.0.226 7997 127.0.0.1
start zone.exe . 7999 192.168.0.226 7998 127.0.0.1
start zone.exe . 7999 192.168.0.226 7999 127.0.0.1
exit
cls
tell you right now your syntax is causing your zone.exe to crash you need to change these to:
Boot5zones.bat
Code:
start zone.exe . 192.168.0.226 7995 localhost
start zone.exe . 192.168.0.226 7996 localhost
start zone.exe . 192.168.0.226 7997 localhost
start zone.exe . 192.168.0.226 7998 localhost
start zone.exe . 192.168.0.226 7999 localhost
exit
cls
notice i took out the 7999 that was put before your externalIP, it was causing the crashes, with these fixes your server should run on your LAN just fine. so try this, if it doesn't work post what other output your getting and i will see if i can help =)
Hope this helps.