#!/bin/ksh
if [ ${EMPIREPORT:-x} = x ]; then EMPIREPORT=1617; fi
if [ ${EMPIREHOST:=x} = x ]; then EMPIREHOST=hpcvxst; fi
if [ ${EMPIREBASE:=x} = x ]; then EMPIREBASE=$HOME/games/empire; fi
if [ ${EMPIREDATA:=x} = x ]; then EMPIREDATA=$HOME/games/EMP; fi
if [ ${EMPIREPOGO:=x} = x ]; then EMPIREPOGO=peter; fi

if [ x$1 = x ]; then
  empire POGO $EMPIREPOGO
else
  empire POGO $1
fi
