]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/teamplay.qh
Merge branch 'master' into Mario/vaporizer_damage
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / teamplay.qh
1 #ifndef TEAMPLAY_H
2 #define TEAMPLAY_H
3
4 string cache_mutatormsg;
5 string cache_lastmutatormsg;
6
7 // client counts for each team
8 //float c1, c2, c3, c4;
9 // # of bots on those teams
10 float cb1, cb2, cb3, cb4;
11
12 //float audit_teams_time;
13
14 void TeamchangeFrags(entity e);
15
16 void entcs_init();
17
18 void LogTeamchange(float player_id, float team_number, float type);
19
20 void default_delayedinit();
21
22 void ActivateTeamplay();
23
24 void InitGameplayMode();
25
26 string GetClientVersionMessage();
27
28 string getwelcomemessage(void);
29
30 void SetPlayerColors(entity pl, float _color);
31
32 void SetPlayerTeam(entity pl, float t, float s, float noprint);
33
34 // set c1...c4 to show what teams are allowed
35 void CheckAllowedTeams (entity for_whom);
36
37 float PlayerValue(entity p);
38
39 // c1...c4 should be set to -1 (not allowed) or 0 (allowed).
40 // teams that are allowed will now have their player counts stored in c1...c4
41 void GetTeamCounts(entity ignore);
42
43 float TeamSmallerEqThanTeam(float ta, float tb, entity e);
44
45 // returns # of smallest team (1, 2, 3, 4)
46 // NOTE: Assumes CheckAllowedTeams has already been called!
47 float FindSmallestTeam(entity pl, float ignore_pl);
48
49 float JoinBestTeam(entity pl, float only_return_best, float forcebestteam);
50
51 //void() ctf_playerchanged;
52 void SV_ChangeTeam(float _color);
53
54 void ShufflePlayerOutOfTeam (float source_team);
55 #endif