]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/mutators/gamemode_ca.qh
Add Clan Arena to the mutator system
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / gamemode_ca.qh
1 .float caplayer;
2 float total_players;
3 float redalive, bluealive, yellowalive, pinkalive;
4 .float redalive_stat, bluealive_stat, yellowalive_stat, pinkalive_stat;
5 #define CA_ALIVE_TEAMS() ((redalive > 0) + (bluealive > 0) + (yellowalive > 0) + (pinkalive > 0))
6 #define CA_ALIVE_TEAMS_OK() (CA_ALIVE_TEAMS() == ca_teams)
7 float ca_teams;
8
9 float allowed_to_spawn;
10