#! /bin/tcsh -f

# Set the port number.
set port = 9275
if ( "$1" != "" ) set port="$1"

# Change to area directory.
#here
cd ~/xanth/area

# Set limits.
nohup
nice
limit stack 1024k
if ( -e shutdown.txt ) rm -f shutdown.txt

    # If you want to have logs in a different directory,
    #   change the 'set logfile' line to reflect the directory name.
    set index = 0
    while ( 1 )
	set logfile = ../log/$index.log
	if ( ! -e $logfile ) break
	@ index++
    end

    # Record starting time
    date > $logfile
    date > ../txt/boot.txt

    # Record initial charges
    # charges >> $logfile

    # Run the mud.
#here
    ~/xanth/bin/2k $port >&! $logfile

    # Record ending charges
    # charges >> $logfile

#    # Delete this out if no adb.
#    if ( -e core ) then
#	    echo '$c' | adb ../src/smaug
#    endif

    # Restart, giving old connections a chance to die.
    if ( -e shutdown.txt ) then
	rm -f shutdown.txt
	exit 0
    endif
#here
    ~/xanth/bin/xanth.pl