]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/vote.qh
Merge remote-tracking branch 'origin/master' into fruitiex/animations
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / vote.qh
1 float votecalled;
2 string votecalledvote;
3 string votecalledvote_display;
4 float votecalledmaster;
5 entity votecaller;
6 float votefinished;
7 .float vote_master;
8 .float vote_next;
9 .float vote_vote;
10 float vote_yescount;
11 float vote_nocount;
12 float vote_abstaincount;
13 float vote_needed_absolute;
14 float vote_needed_simple;
15
16 float VoteCheckNasty(string cmd);
17 entity GetKickVoteVictim(string vote, string cmd, entity caller);
18 float GameCommand_Vote(string s, entity e);
19 void VoteHelp(entity e);
20 string VoteNetname(entity e);
21 string ValidateMap(string m, entity e);
22 void VoteThink();
23 string VoteParse(string s, float tokens);
24 float VoteAllowed(string vote, string cmd);
25 void VoteReset();
26 void VoteAccept();
27 void VoteReject();
28 void VoteTimeout();
29 void VoteStop(entity stopper);
30 void VoteSpam(float notvoters, float mincount, string result);
31 void VoteCount();