View Single Post
  #4  
Old 07-06-2006, 11:05 AM
castlusion
Fire Beetle
 
Join Date: Jun 2006
Posts: 5
Default here is mine

Here is mine i just got it working on debian sarge
Code:
#!/bin/sh

case "$1" in
'start')
  echo "Starting EqEmu..."
  echo "  - starting world"
  ./world 2>&1 > logs/world &
  sleep 5
  ./zone  68.209.169.32 . 7791 192.168.0.100 2>&1 > logs/world &
  sleep 3
  ./zone  68.209.169.32 . 7792 192.168.0.100 2>&1 > logs/world &
  sleep 3
  ./zone  68.209.169.32 . 7793 192.168.0.100 2>&1 > logs/world &
  echo "  - starting zones"
  echo "... done";
  ;;
'stop')
  echo "Killing EqEmu...";
  killall world zone 2>/dev/null
  echo "... done"
  ;;
'restart')
  $0 stop
  sleep 1
  $0 start
  ;;
*)
echo "usage $0 start|stop|restart"
  ;;
esac
it is realy just a combation of what i found on boards and my own config ;')
Reply With Quote