View Single Post
  #1  
Old 12-21-2013, 04:33 PM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,603
Default Cannot run my server.

Upon attempting to run my server I get the following error: http://prntscr.com/2cxlby

There are no logs of this event; therefore, I cannot diagnose the error or post a log to help anyone else diagnose it, any ideas?

Here's my batch file:
Code:
@echo off
RMDIR /S /Q shared
mkdir shared
start shared_memory.exe
echo The shared memory must finish for the world to start.
ping -n 30 127.0.0.1 > nul
start world.exe
echo The world must finish for the zone to start.
ping -n 10 127.0.0.1 > nul
start queryserv.exe
start ucs.exe
start eqlaunch.exe zone	
exit
Reply With Quote