clan/
class/
data/
doc/ideas/
doc/mobprogs/
gods/
log/
player/
time/
#! /bin/csh -f
# Written by Furey.
# With additions from Tony.
# With additions by Lotherius.

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

# Change to area directory.
cd ../area

# Set limits. umask is in case different users start the mud
# it will always set to be group readable/writable.
# For security you may want to make a "MUD" group.
umask 006
unlimit core
if ( -e shutdown.txt ) rm -f shutdown.txt

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

    # Run merc.
    ../src/merc $port >&! $logfile


    # Restart, giving old connections a chance to die.
    if ( -e shutdown.txt ) then
	rm -f shutdown.txt
	exit 0
    endif
    sleep 10
end