]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/mutators/gamemode_domination.qh
Merge branch 'master' into Mario/race_cts_mutators
[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
8 // pps: points per second
9 .float dom_total_pps;
10 .float dom_pps_red;
11 .float dom_pps_blue;
12 .float dom_pps_yellow;
13 .float dom_pps_pink;
14 float total_pps;
15 float pps_red;
16 float pps_blue;
17 float pps_yellow;
18 float pps_pink;
19
20 // capture declarations
21 .float enemy_playerid;
22 .entity sprite;
23 .float captime;