]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/gamemodes/gamemode/ctf/ctf.qh
Merge branch 'master' into Mario/stats_eloranking
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / gamemodes / gamemode / ctf / ctf.qh
1 #pragma once
2
3 const int CTF_RED_FLAG_TAKEN                    = 1;
4 const int CTF_RED_FLAG_LOST                             = 2;
5 const int CTF_RED_FLAG_CARRYING                 = 3;
6 const int CTF_BLUE_FLAG_TAKEN                   = 4;
7 const int CTF_BLUE_FLAG_LOST                    = 8;
8 const int CTF_BLUE_FLAG_CARRYING                = 12;
9 const int CTF_YELLOW_FLAG_TAKEN                 = 16;
10 const int CTF_YELLOW_FLAG_LOST                  = 32;
11 const int CTF_YELLOW_FLAG_CARRYING              = 48;
12 const int CTF_PINK_FLAG_TAKEN                   = 64;
13 const int CTF_PINK_FLAG_LOST                    = 128;
14 const int CTF_PINK_FLAG_CARRYING                = 192;
15 const int CTF_NEUTRAL_FLAG_TAKEN                = 256;
16 const int CTF_NEUTRAL_FLAG_LOST                 = 512;
17 const int CTF_NEUTRAL_FLAG_CARRYING             = 768;
18 const int CTF_FLAG_NEUTRAL                              = 2048;
19 const int CTF_SHIELDED                                  = 4096;
20 const int CTF_STALEMATE                                 = 8192;