]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/constants.qh
Merge branch 'master' into TimePath/csqc_viewmodels
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / constants.qh
1 #ifndef SERVER_CONSTANTS_H
2 #define SERVER_CONSTANTS_H
3
4 const int FL_WEAPON = BIT(13);
5 const int FL_POWERUP = BIT(14);
6 const int FL_PROJECTILE = BIT(15);
7 const int FL_TOSSED = BIT(16);
8 const int FL_NO_WEAPON_STAY = BIT(17);
9 const int FL_SPAWNING = BIT(18);
10 const int FL_PICKUPITEMS = BIT(19);
11
12 const int SVC_SETVIEW = 5;
13
14 const int RESPAWN_FORCE = 1;
15 const int RESPAWN_SILENT = 2;
16
17 #define EFMASK_CHEAP (EF_ADDITIVE | EF_DOUBLESIDED | EF_FULLBRIGHT | EF_NODEPTHTEST | EF_NODRAW | EF_NOGUNBOB | EF_NOSHADOW | EF_LOWPRECISION | EF_SELECTABLE | EF_TELEPORT_BIT)
18
19 const int NUM_PLAYERSKINS_TEAMPLAY = 3;
20
21 const int ASSAULT_VALUE_INACTIVE = 1000;
22
23 #endif