> Well I took the mud over from the prior owner and ASSUME that was the > startup script... Here it is, do you see anything that could be causing > this? > > #!/bin/sh > # Written by Furey. > # With additions from Tony and Alander. > # Converted to /bin/sh by Paruda :p > # Change to area directory.
what directory are you running this.. make sure that one directory down there is an area directory, because if there isn't well nothing is going to run correctly > cd ../area > > while true > do > # If you want to have logs in a different directory, > # change the 'LOGFILE=' line to reflect the directory name. > INDEX=1000 make sure that one level down from area is there is an src directory. and you probably want to make sure that your make file compiles rom to rom.exe (not an normal unix thing.. you probably want to remove the exe from both the make file, and here) > cp ../src/rom.exe ../src/romfile.exe > ../src/romfile.exe $PORT > $LOGFILE 2>&1

