From a8902580aaeba4bd2c7c458ba6b5da9a761551a4 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Mon, 1 Oct 2012 13:17:25 +0200 Subject: [PATCH] sort the stats list again --- qcsrc/common/constants.qh | 48 +++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/qcsrc/common/constants.qh b/qcsrc/common/constants.qh index 9717905b6..c270b61a9 100644 --- a/qcsrc/common/constants.qh +++ b/qcsrc/common/constants.qh @@ -168,29 +168,6 @@ const float STAT_HAGAR_LOAD = 57; const float STAT_SWITCHINGWEAPON = 58; const float STAT_SUPERWEAPONS_FINISHED = 59; -// see DP source, quakedef.h -const float STAT_MOVEVARS_AIRSPEEDLIMIT_NONQW = 222; -const float STAT_MOVEVARS_AIRSTRAFEACCEL_QW = 223; -const float STAT_MOVEVARS_MAXSPEED = 244; -const float STAT_MOVEVARS_AIRACCEL_QW = 254; - -const float CTF_STATE_ATTACK = 1; -const float CTF_STATE_DEFEND = 2; -const float CTF_STATE_COMMANDER = 3; - -const float HUD_NORMAL = 0; -const float HUD_VEHICLE_FIRST = 10; -const float HUD_SPIDERBOT = 10; -const float HUD_WAKIZASHI = 11; -const float HUD_RAPTOR = 12; -const float HUD_BUMBLEBEE = 13; -const float HUD_BUMBLEBEE_GUN = 14; -const float HUD_VEHICLE_LAST = 14; - -const vector eX = '1 0 0'; -const vector eY = '0 1 0'; -const vector eZ = '0 0 1'; - const float STAT_VEHICLESTAT_HEALTH = 60; const float STAT_VEHICLESTAT_SHIELD = 61; const float STAT_VEHICLESTAT_ENERGY = 62; @@ -212,7 +189,7 @@ const float STAT_PINKALIVE = 103; const float STAT_FROZEN = 104; const float STAT_REVIVE_PROGRESS = 105; - +// domination const float STAT_DOM_TOTAL_PPS = 100; const float STAT_DOM_PPS_RED = 101; const float STAT_DOM_PPS_BLUE = 102; @@ -222,6 +199,29 @@ const float STAT_DOM_PPS_YELLOW = 104; //const float STAT_SPIDERBOT_AIM 53 // compressShotOrigin //const float STAT_SPIDERBOT_TARGET 54 // compressShotOrigin +// see DP source, quakedef.h +const float STAT_MOVEVARS_AIRSPEEDLIMIT_NONQW = 222; +const float STAT_MOVEVARS_AIRSTRAFEACCEL_QW = 223; +const float STAT_MOVEVARS_MAXSPEED = 244; +const float STAT_MOVEVARS_AIRACCEL_QW = 254; + +const float CTF_STATE_ATTACK = 1; +const float CTF_STATE_DEFEND = 2; +const float CTF_STATE_COMMANDER = 3; + +const float HUD_NORMAL = 0; +const float HUD_VEHICLE_FIRST = 10; +const float HUD_SPIDERBOT = 10; +const float HUD_WAKIZASHI = 11; +const float HUD_RAPTOR = 12; +const float HUD_BUMBLEBEE = 13; +const float HUD_BUMBLEBEE_GUN = 14; +const float HUD_VEHICLE_LAST = 14; + +const vector eX = '1 0 0'; +const vector eY = '0 1 0'; +const vector eZ = '0 0 1'; + // moved that here so the client knows the max. // # of maps, I'll use arrays for them :P #define MAPVOTE_COUNT 10 -- 2.39.2