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