]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/mutators/gamemode_domination.qh
Round-based domination
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / gamemode_domination.qh
1 // these are needed since mutators are compiled last
2
3 // score rule declarations
4 #define ST_DOM_TICKS 1
5 #define SP_DOM_TICKS 4
6 #define SP_DOM_TAKES 5
7 #define ST_DOM_CAPS 1
8 #define SP_DOM_CAPS 4
9
10 // pps: points per second
11 .float dom_total_pps;
12 .float dom_pps_red;
13 .float dom_pps_blue;
14 .float dom_pps_yellow;
15 .float dom_pps_pink;
16 float total_pps;
17 float pps_red;
18 float pps_blue;
19 float pps_yellow;
20 float pps_pink;
21
22 // capture declarations
23 .float enemy_playerid;
24 .entity sprite;
25 .float captime;
26
27 // misc globals
28 float domination_roundbased;
29 float domination_teams;