|-- data/
| |-- common-spog.pk3
| `-- data*.pk3
-|-- havoc/
-| `-- data*.pk3
|-- Nexuiz.app/
|-- Nexuiz-SDL.app/
|-- server/
+++ /dev/null
-exec defaultHavoc.cfg
This subdirectory contains scripts and a config file that can be used\r
-to start a dedicated Nexuiz (default) or Nexuiz Havoc server (differs\r
-in movement, weapon and other settings) on linux, mac or windows\r
-systems and also some tools that help with maintaining your server.\r
+to start a dedicated Nexuiz on linux, mac or windows systems and also \r
+some tools that help with maintaining your server.\r
\r
You will need to copy the right script into your Nexuiz main\r
-directory, where the normal binaries are. There are two scrips for\r
-each sytems, one to start a normal Nexuiz server and one to start a\r
-Nexuiz 'Havoc' server. You then need to copy and ADJUST the config\r
-file which is called server.cfg. You can copy it either into the\r
-Nexuiz/data directory where the big data*.pk3 file is or when running\r
-on linux or mac you can as well copy it into a special directory\r
-called '~/.nexuiz/data'. After you have setup everything and have\r
-adjusted the config file you can start the server by running the\r
+directory, where the normal binaries are. You then need to copy and \r
+ADJUST the config file which is called server.cfg. You can copy it \r
+either into the Nexuiz/data directory where the big data*.pk3 file is \r
+or when running on linux or mac you can as well copy it into a special \r
+directory called '~/.nexuiz/data'. After you have setup everything and \r
+have adjusted the config file you can start the server by running the\r
server script.\r
\r
Please make sure your server is always uptodate! Just signup the\r
+++ /dev/null
-#!/bin/sh
-
-case "$(uname -m)" in
- x86_64) executable="nexuiz-linux-x86_64-dedicated" ;;
- *) executable="nexuiz-linux-686-dedicated" ;;
-esac
-
-cd "`dirname "${0}"`"
-
-if ! [ -x "$executable" ]; then
- if [ -x "../$executable" ] && { [ -f ~/.nexuiz/data/server.cfg ] || [ -f ../data/server.cfg ] || [ -f ~/.nexuiz/havoc/server.cfg ] || [ -f ../havoc/server.cfg ]; }; then
- cd ..
- else
- echo "This script is not properly set up yet."
- echo "Please refer to the instructions in readme.txt."
- echo "In short:"
- echo "- copy server.cfg to the data directory and adjust its settings"
- echo "- move this file to the main directory of your Nexuiz installation"
- exit 1
- fi
-fi
-
-exec ./${executable} -game havoc +serverconfig server.cfg "${@}"
+++ /dev/null
-#!/bin/sh
-
-executable="nexuiz-osx-dedicated"
-
-cd "`dirname "${0}"`"
-
-if ! [ -x "$executable" ]; then
- if [ -x "../$executable" ] && { [ -f ~/.nexuiz/data/server.cfg ] || [ -f ../data/server.cfg ] || [ -f ~/.nexuiz/havoc/server.cfg ] || [ -f ../havoc/server.cfg ]; }; then
- cd ..
- else
- echo "This script is not properly set up yet."
- echo "Please refer to the instructions in readme.txt."
- echo "In short:"
- echo "- copy server.cfg to the data directory and adjust its settings"
- echo "- move this file to the main directory of your Nexuiz installation"
- exit 1
- fi
-fi
-
-exec ./${executable} -game havoc +serverconfig server.cfg "${@}"
+++ /dev/null
-@echo off\r
-\r
-setlocal\r
-set executable=nexuiz -dedicated\r
-\r
-%~d0\r
-cd "%~p0"\r
-\r
-if exist %executable% goto good\r
-if not exist ..\%executable% goto bad\r
-if exist ..\data\server.cfg goto halfgood\r
-if exist ..\havoc\server.cfg goto halfgood\r
-goto bad\r
-\r
-:bad\r
-echo This script is not properly set up yet.\r
-echo Please refer to the instructions in readme.txt.\r
-echo In short:\r
-echo - copy server.cfg to the data directory and adjust its settings\r
-echo - move this file to the main directory of your Nexuiz installation\r
-pause\r
-exit\r
-\r
-:halfgood\r
-cd ..\r
-\r
-:good\r
-.\%executable% -game havoc +serverconfig server.cfg %*\r