SERVER - Requiem for Q3A Installation/FAQ; Requiem version 0.5

NOTE: This is a static text file that is inherently out of date.  We recommend
checking the www.planetquake.com/requiem website for the most recent version.

      WARNING
      Save your current requiem folder (or at least the q3config.cfg file) in a 
      safe place before continuing. Running a server can cause your client 
      settings to get mangled to the point of uselessness. The following is for 
      a dedicated server setup, and is not meant to coexist with a client 
      install. It can be done, but we won't support it - you're on your own, and 
      again, back up your config files!


      This guide should help you debug any issues, as there are some gotcha's 
      ... If all else fails, check the forums at www.planetquake.com/requiem

      Windows
        Quick-Start - Set up Requiem Q3A server, announcing to ID and GAMESPY 
        servers 
          I will assume your Q3A install is "C:\program files\quake iii arena\" 
          Install Q3A 
          Install the 1.17 point release. Fetch that from the www.fileplanet.com
	  Q3A "Official files" file section.

          You're reading this file because you've already downloaded and unzipped the
          Requiem zipfile.  You should have a requiem folder in your quake iii arena 
          directory with at least the following files in it:

		requiem05_snd01.pk3
		requiem05_mdl01.pk3
		requiem05_img02.pk3
		requiem05_vm03.pk3
		runespawn.cfg
		server.cfg
		maprotation.cfg
          
          Customize requiem\server.cfg and requiem\maprotation.cfg 

          Right-mouse-click on 'reqserv.bat', click properties. Click the 
          "program" tab, and check the "Close on exit" box. Click OK.
 
          Run 'reqserv.bat'! 

        Notes 
          YOU MUST NOT have the 3 precompiled/"speed-enhancing" .dll files 
          installed. Check to make sure you don't have: uix86.dll, 
          qagamex86.dll, cgamex86.dll in your base Q3A folder or any of it's 
          sub-folders (ie baseq3, requiem, etc). You may need to (win98): View 
          -> Folder Options. Click "View" tab. Make sure the Advanced Settings 
          are set to: Show all files is marked. Hide file extensions for known 
          file types is UNchecked. Then click OK. This will guarantee that you 
          can see the files you need to delete, and their extensions. 

	Make sure you read the client_setup.txt file, too.

      Linux
        Quick-Start - Set up Requiem Q3A server, announcing to ID and GAMESPY 
        servers 
          Install Q3A 
          Install the 1.17 point release. Fetch that from the www.fileplanet.com
	  Q3A "Official files" 

	  Download the requiem non-windows package.  Create a directory under your Q3A
	  directory called requiem and unpack the downloaded file into it.
	  You should end up with at least the following files in the requiem directory:

		requiem05_snd01.pk3
		requiem05_mdl01.pk3
		requiem05_img02.pk3
		requiem05_vm03.pk3
		runespawn.cfg
		server.cfg
		maprotation.cfg


	  Use the script at the bottom of this file to start your server.
	  Edit a file called 'go' and paste the script into that file.

	  Place 'go' in the root Q3A folder, and type in 'chmod a+x go' 
          
          Customize requiem\server.cfg and requiem\maprotation.cfg 
          Run './go'! 

        Notes 
          YOU MUST NOT have the 3 precompiled/"speed-enhancing" .so files 
          installed. Check to make sure you don't have: uix86.so, qagamex86.so, 
          cgamex86.so in your base Q3A folder or any of it's sub-folders (ie 
          baseq3, requiem, etc). 

	Make sure you read the client_setup.txt file, too.

=====================
go - make sure that big long line beginning with './q3ded' is ONE LINE!!!
=====================
#!/bin/sh

##############################################################################
# $RCSfile: go,v $
# $Revision: 1.3 $
# $Author: ben $
# $Date: 2000/04/27 23:27:21 $
##############################################################################

GAMETYPE=0
DEDICATED=2
PORT=27960
MEM=30
MAXCLIENTS=16
Q3A=/usr/local/q3a
CFG=server.cfg
DATE=`date +"%m-%d-%Y %T"`

##############################################################################

cd $Q3A

while [ 1 ]; do
   ./q3ded +set net_port $PORT +set dedicated $DEDICATED +set g_gametype $GAMETYPE +set sv_maxclients $MAXCLIENTS +set com_hunkmegs $MEM +set fs_game requiem +set fs_basepath $Q3A +sets gamestartup \"$DATE\" +exec $CFG
   echo
   echo
   echo "Hit ctrl-c NOW or wait 5 seconds for automatic server restart"
   sleep 5
done
