Quake II 3.21 'Capture The Flag' for Yamagi Quake II
Find a file
Daniel Gibson e2b397d92c One entity shooting another should work even if friendly fire is off
In rogue's RHANGAR1 the turret didn't blow up the ceiling when friendly fire
was off, because in ClientTeam() both entities were set to "" (no team),
but OnSameTeam() just did a strcmp() instead of checking this special
case (no team).
We check this now and thus it works. Hooray.
I also refactored ClientTeam() to take the buffer instead of using a
static one and to be static (it's only called by OnSameTeam() anyway).
2014-11-30 18:02:32 +01:00
src One entity shooting another should work even if friendly fire is off 2014-11-30 18:02:32 +01:00
CHANGELOG Mention 1.02 changes 2012-12-30 18:01:18 +01:00
LICENSE Add LICENSE files 2011-10-10 19:40:18 +00:00
Makefile Port the Makefile to our new Windows build environment 2014-02-14 11:47:30 +01:00
README Add OS X installation guide 2012-11-05 21:31:43 +01:00

This is a 64 bit clean and bugfixed version of id Software's Quake II
addon pack "Capture The Flag", developed by David 'Zoid' Kirsch. Hundred
of type errors and strange constructs were fixed, thus this version
should run much more stable than the old SDK version. While it may work
with every Quake II client, the "Yamagi Quake II" client is highly
recommended. For more Information visit http://www.yamagi.org/quake2.

Installation for FreeBSD, Linux and OpenBSD:
--------------------------------------------
1. Type "make" or "gmake" to compile the game.so.
2. Copy release/game.so to the ctf/ subfolder of your Quake II
   installation. The CTF gamedata is part of the 3.20 point release.
3. Start the game with "./quake2 +set game ctf".

Installation for OS X:
---------------------- 
1. Copy game.dll from the zip-archive to ctf/.
2. Start the game with "quake2 +set game ctf"

If you want to compile 'ctf' for OS X from source, please take a look at
the "Installation" section of the README of the Yamagi Quake II client.
In the same file the integration into an app-bundle is explained.

Installation for Windows:
-------------------------
1. Copy the game.dll to the ctf\ subfolder of your Quake II
   installation. The CTF gamedata is part of the 3.20 point release.
2. Start the game with "quake2.exe +set game ctf".

If you want to compile 'ctf' for Windows from source, please take a
look at the "Installation" section of the README of the Yamagi Quake 
II client. There's descripted how to setup the build environment.