Difference between revisions of "TF2 Voting"
(→Example voting plugin) |
Joinedsenses (talk | contribs) m (→Example voting plugin: Update naming and formatting) |
||
(88 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | Team Fortress 2 has a new voting system based on the [[Left 4 Voting|Left 4 Dead Voting system]] and is controlled by | + | ''This is for SourceMod plugin development involving the TF2 Vote System. If you are looking into the details on configuring TF2 Voting on your TF2 server, see [http://wiki.teamfortress.com/wiki/Voting Voting] on the Official Team Fortress Wiki.'' |
+ | |||
+ | Team Fortress 2 has a new VGUI voting system based on the [[Left 4 Voting|Left 4 Dead Voting system]] and is controlled by [[Game Events (Source)|Game Events]] and [[User Messages]]. You can use either a string from the resource file, or TF_playerid_noteam which will let you create any vote you want. | ||
== How voting works == | == How voting works == | ||
− | For | + | # A client issues a callvote with the vote type and argument, or the server calls a vote (server uses entity index 99). |
+ | # The server sends a vote_options event. | ||
+ | #* For Yes/No votes, the values it sends are Yes and No (in that order). For Multiple Choice votes, the actual vote options are sent. | ||
+ | # The VoteStart User Message is sent, the last argument determines the vote type. | ||
+ | # Clients use the "vote" command to register their votes (option1 through option5), after which the server sends a vote_cast event with a 0-based option number (so option1 = 0, option5 = 4). It also updates the vote_controller entity's vote counts. | ||
+ | # When the vote is complete, the server sends either a VotePass or VoteFailed User Message. | ||
+ | |||
+ | == Server Entity == | ||
+ | |||
+ | The server should update this as appropriate. Unfortunately, the valid values for m_iActiveIssueIndex is unknown. | ||
+ | |||
+ | {{begin-hl2msg|vote_controller (CVoteController)|string}} | ||
+ | {{hl2msg|int|m_iActiveIssueIndex|Number of the active issue}} | ||
+ | {{hl2msg|int|m_iOnlyTeamToVote|Corresponds to VoteStart's team argument.}} | ||
+ | {{hl2msg|int[5]|m_nVoteOptionCount|Table of 5 vote counts numbered 0-4}} | ||
+ | {{hl2msg|int|m_nPotentialVotes|Number of players eligible to vote}} | ||
+ | {{hl2msg|int|m_bIsYesNoVote|Corresponds to VoteStart's yesno argument}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | == Console Commands == | ||
+ | |||
+ | === callvote === | ||
+ | {{qnotice|This command can take 0 arguments. If it does, a VoteSetup usermessage is returned to that user.}}<br /> | ||
+ | {{begin-hl2msg|callvote|string}} | ||
+ | {{hl2msg|string|type|"Kick", "RestartGame", "ChangeLevel", "NextLevel", "ScrambleTeams", or "ChangeMission". Should return VoteSetup Usermessage if left blank.}} | ||
+ | {{hl2msg|string|param1|"userid_short kicktype_string" for Kick, map name for Changelevel/NextLevel, or popfile for ChangeMission. Otherwise, left blank}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | kicktype_string is one of these (at least in the English version): | ||
+ | * other | ||
+ | * cheating | ||
+ | * idle | ||
+ | * scamming | ||
+ | |||
+ | This data is primarily there if you want to intercept these messages in a plugin. | ||
+ | |||
+ | CallVoteFailed UserMessage is sent back if a vote cannot be called unless a vote is already being displayed. | ||
+ | |||
+ | === vote === | ||
+ | {{qnotice|This command is only valid when a vote is ongoing.}}<br /> | ||
+ | {{begin-hl2msg|vote|string}} | ||
+ | {{hl2msg|string|option|F1 is "option1", F2 is "option2", F3 is "option3", F4 is "option4", F5 is "option5"}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | Note that these are 1-based, but the vote_cast event is 0-based. | ||
+ | |||
+ | == User Messages == | ||
+ | {{qnotice|These user messages use unsigned bytes for the team number. Since the October 15, 2014 update, all teams is now represented by 0 (it used to be -1 / 255)}}<br> | ||
+ | |||
+ | |||
+ | The User Messages that exist in the TF2 Voting system are: | ||
+ | |||
+ | ===VoteSetup=== | ||
+ | {{qnotice|Sent to a player when they load the Call Vote screen (which sends the callvote command to the server), lists what votes are allowed on the server}}<br> | ||
+ | {{qnotice|This changed in the October 15, 2014 update}}<br> | ||
+ | |||
+ | {{begin-hl2msg|VoteSetup|string}} | ||
+ | {{hl2msg|byte|issue_count|Count of vote issues allowed on this server. Not present in protobuf version}} | ||
+ | {{hl2msg|repeated message|issue|issue fields as shown below}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | {{begin-hl2msg|issue|string}} | ||
+ | {{hl2msg|string|potential_issue|Vote issue name that will be sent for the callvote command}} | ||
+ | {{hl2msg|string|translation name|Translation name, such as #TF_RestartGame}} | ||
+ | {{hl2msg|byte|enabled|1 if this issue is enabled, 0 if not}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | There is one "issue" sent for each supported issue. | ||
+ | Valid potential_issue strings are: | ||
+ | * Kick | ||
+ | * RestartGame | ||
+ | * ChangeLevel | ||
+ | * NextLevel | ||
+ | * ScrambleTeams | ||
+ | * ChangeMission | ||
+ | * TeamAutoBalance | ||
+ | * ClassLimits | ||
+ | |||
+ | Valid translation name strings are: | ||
+ | * #TF_Kick | ||
+ | * #TF_RestartGame | ||
+ | * #TF_ChangeLevel | ||
+ | * #TF_NextLevel | ||
+ | * #TF_ScrambleTeams | ||
+ | * #TF_ChangeMission | ||
+ | * #TF_TeamAutoBalance_Enable | ||
+ | * #TF_TeamAutoBalance_Disable | ||
+ | * #TF_ClassLimit_Enable | ||
+ | * #TF_ClassLimit_Disable | ||
+ | |||
+ | By default, disabled issues are omitted (sv_vote_ui_hide_disabled_issues 1). | ||
+ | |||
+ | ===CallVoteFailed=== | ||
+ | {{qnotice|Sent to a player when they attempt to call a vote and fail.}}<br> | ||
+ | {{begin-hl2msg|CallVoteFailed|string}} | ||
+ | {{hl2msg|byte|reason|Failure reason (1-2, 5-10, 12-19)}} | ||
+ | {{hl2msg|short|time|For failure reasons 2 and 8, time in seconds until client can start another vote. 2 is per user, 8 is per vote type.}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | Valid Failure Codes are:<br /> | ||
+ | 1 - VOTE_FAILED_TRANSITIONING_PLAYERS - Cannot call vote while other players are still loading. This appears to be a holdover from L4D2; use code 10 instead.<br /> | ||
+ | 2 - VOTE_FAILED_RATE_EXCEEDED - You called a vote recently and cannot call another one for X seconds (second argument to CallVoteFailed specifies the number of seconds)<br /> | ||
+ | 5 - VOTE_FAILED_ISSUE_DISABLED - Server has disabled that issue.<br /> | ||
+ | 6 - VOTE_FAILED_MAP_NOT_FOUND - That map does not exist.<br /> | ||
+ | 7 - VOTE_FAILED_MAP_NAME_REQUIRED - You must specify a map name<br /> | ||
+ | 8 - VOTE_FAILED_FAILED_RECENTLY - This vote failed recently<br /> | ||
+ | 9 - VOTE_FAILED_TEAM_CANT_CALL - Your team cannot call this vote<br /> | ||
+ | 10 - VOTE_FAILED_WAITINGFORPLAYERS - Voting not allowed while Waiting for Players<br /> | ||
+ | 11 - VOTE_FAILED_PLAYERNOTFOUND - Doesn't appear to work<br /> | ||
+ | 12 - VOTE_FAILED_CANNOT_KICK_ADMIN - Can't Kick Server Admin<br /> | ||
+ | 13 - VOTE_FAILED_SCRAMBLE_IN_PROGRESS - Vote Scramble is pending<br /> | ||
+ | 14 - VOTE_FAILED_SPECTATOR - Spectators can't vote<br /> | ||
+ | 15 - VOTE_FAILED_NEXTLEVEL_SET - Next level already set<br /> | ||
+ | 16 - VOTE_FAILED_MAP_NOT_VALID - Map is not in the map list<br /> | ||
+ | 17 - VOTE_FAILED_CANNOT_KICK_FOR_TIME - Cannot kick yet. Used for MvM<br /> | ||
+ | 18 - VOTE_FAILED_CANNOT_KICK_DURING_ROUND - Cannot kick during round. Used for MvM<br /> | ||
+ | 19 - VOTE_FAILED_MODIFICATION_ALREADY_ACTIVE - Modification is already active, used by Eternaween<br /> | ||
+ | |||
+ | ===VoteStart=== | ||
+ | {{qnotice|Sent to all players currently online. The default implementation also sends it to bots.}}<br /> | ||
+ | |||
+ | {{begin-hl2msg|VoteStart|string}} | ||
+ | {{hl2msg|byte|team|Team index or 0 for all}} | ||
+ | {{hl2msg|byte|ent_idx|Client index of person who started the vote, or 99 for the server.}} | ||
+ | {{hl2msg|string|disp_str|Vote issue translation string}} | ||
+ | {{hl2msg|string|details_str|Vote issue text}} | ||
+ | {{hl2msg|bool|is_yes_no_vote|true for Yes/No, false for Multiple choice}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | Valid issue strings: | ||
+ | * #TF_vote_kick_player_other - Generic Kick vote. param1 is player name. | ||
+ | * #TF_vote_kick_player_idle - Idler Kick vote. param1 is player name. | ||
+ | * #TF_vote_kick_player_cheating - Cheater Kick vote. param1 is player name. | ||
+ | * #TF_vote_kick_player_scamming - Scammer Kick vote. param1 is player name. | ||
+ | * #TF_vote_restart_game - Restart map vote. param1 ignored. | ||
+ | * #TF_vote_changelevel - Change map vote. param1 is map name. | ||
+ | * #TF_vote_nextlevel - Set next level vote. param1 is map name. | ||
+ | * #TF_vote_nextlevel_choices - End of map map vote. param1 ignored. This vote is not in the user vote menu. | ||
+ | * #TF_vote_scramble_teams - Scramble teams vote. param1 ignored. | ||
+ | * #TF_vote_should_scramble_round - Scramble teams at round end vote. param1 ignored. This vote is not in the user vote menu. | ||
+ | * #TF_vote_td_start_round - Start the round? param1 ignored. This vote is not in the user vote menu. | ||
+ | * #TF_vote_changechallenge - Change MvM mission? param1 is mission. This vote is in the menu on MvM maps. | ||
+ | * #TF_vote_eternaween - Activate Halloween mode? param1 ignored. This vote is activated by someone using the Eternaween item. | ||
+ | * #TF_vote_autobalance_enable - Active Autobalance? param1 ignored. | ||
+ | * #TF_vote_autobalance_disable - Disable Autobalance? param1 ignored. | ||
+ | * #TF_vote_classlimits_enable - Enable class limits? param1 ignored. | ||
+ | * #TF_vote_classlimits_disable - Disable class limits? param1 ignored. | ||
+ | * #TF_playerid_noteam - Unofficially used for a custom vote. param1 is custom vote issue. | ||
+ | |||
+ | ===VotePass=== | ||
+ | {{qnotice|Sent to all players after a vote passes.}}<br /> | ||
+ | |||
+ | {{begin-hl2msg|VotePass|string}} | ||
+ | {{hl2msg|byte|team|Team index or 0 for all}} | ||
+ | {{hl2msg|string|disp_str|Vote success translation string}} | ||
+ | {{hl2msg|string|details_str|Vote winner}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | Valid success strings: | ||
+ | * #TF_vote_passed_kick_player - Kick vote passed. param1 is player name. | ||
+ | * #TF_vote_passed_restart_game - Restart vote passed. param1 ignored. | ||
+ | * #TF_vote_passed_changelevel - Change level vote passed. param1 is map name. | ||
+ | * #TF_vote_passed_nextlevel - Set next level vote passed. param1 is map name. | ||
+ | * #TF_vote_passed_nextlevel_extend - Current map has been extended. param1 ignored. | ||
+ | * #TF_vote_passed_scramble_teams - Team Scramble vote passed. param1 is ignored. | ||
+ | * #TF_vote_passed_td_start_round - Round start vote passed. param1 is ignored. | ||
+ | * #TF_vote_passed_changechallenge - MvM mission change passed. param1 is new mission. | ||
+ | * #TF_vote_passed_eternaween - Eternaween vote passed. param1 ignored. | ||
+ | * #TF_vote_passed_autobalance_enable - Autobalance enable vote passed. param1 ignored. | ||
+ | * #TF_vote_passed_autobalance_disable - Autobalance disable vote passed. param1 ignored. | ||
+ | * #TF_vote_passed_classlimits_enable - Class Limit enable vote passed. param1 ignored. | ||
+ | * #TF_vote_passed_classlimits_disable - Class Limit disable vote passed. param1 ignored. | ||
+ | * #TF_playerid_noteam - Unofficially used for a custom success string. param1 is custom success string. | ||
+ | |||
+ | ===VoteFailed=== | ||
+ | {{qnotice|Sent to all players after a vote fails.}}<br /> | ||
+ | |||
+ | {{begin-hl2msg|VoteFailed|string}} | ||
+ | {{hl2msg|byte|team|Team index or 0 for all}} | ||
+ | {{hl2msg|byte|reason|Failure reason code (0, 3-4)}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | Valid Failure codes are:<br /> | ||
+ | 0 - VOTE_FAILED_GENERIC - Generic "Vote Failed" message<br /> | ||
+ | 3 - VOTE_FAILED_YES_MUST_EXCEED_NO - Yes votes must outnumber No votes<br /> | ||
+ | 4 - VOTE_FAILED_QUORUM_FAILURE - Not Enough Votes | ||
+ | |||
+ | == Events == | ||
+ | |||
+ | === Server to Client Events === | ||
+ | |||
+ | ==== vote_cast ==== | ||
+ | {{qnotice|Sent to all players when a player chooses a vote option (or more specifically, the server receives a vote command)}}<br> | ||
+ | {{begin-hl2msg|vote_cast|string}} | ||
+ | {{hl2msg|byte|vote_option|which option the player voted on}} | ||
+ | {{hl2msg|short|team|[Ed: Usually -1, but team-specific votes can be 2 for RED or 3 for BLU]}} | ||
+ | {{hl2msg|long|entityid|entity id of the voter}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | This event is unusual as it uses the client's entity ID instead of its userid. | ||
+ | |||
+ | ==== vote_options ==== | ||
+ | {{qnotice|Sent to players before VoteStart UserMessage to populate choices for a multiple choice vote}}<br> | ||
+ | {{begin-hl2msg|vote_options|string}} | ||
+ | {{hl2msg|byte|count|Number of options - up to MAX_VOTE_OPTIONS [ed: 5]}} | ||
+ | {{hl2msg|string|option1|}} | ||
+ | {{hl2msg|string|option2|}} | ||
+ | {{hl2msg|string|option3|}} | ||
+ | {{hl2msg|string|option4|}} | ||
+ | {{hl2msg|string|option5|}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | If sv_vote_issue_nextlevel_allowextend is set to 1, option5 is "Extend current Map" | ||
− | + | === Client-only Events === | |
− | + | These events are passed between the TF2 client and the client's VGUI voting panels. They have no server interaction and the server should not be touching them in any way. | |
+ | |||
+ | ==== vote_ended ==== | ||
+ | |||
+ | {{begin-hl2msg|vote_ended|string}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | ==== vote_started ==== | ||
+ | |||
+ | {{begin-hl2msg|vote_started|string}} | ||
+ | {{hl2msg|string|issue|}} | ||
+ | {{hl2msg|string|param1|}} | ||
+ | {{hl2msg|byte|team|}} | ||
+ | {{hl2msg|long|initiator|entity id of the player who initiated the vote}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | ==== vote_changed ==== | ||
+ | {{qnotice|These values are read from the vote_controller entity on the server}}<br> | ||
+ | |||
+ | {{begin-hl2msg|vote_changed|string}} | ||
+ | {{hl2msg|byte|option1|}} | ||
+ | {{hl2msg|byte|option2|}} | ||
+ | {{hl2msg|byte|option3|}} | ||
+ | {{hl2msg|byte|option4|}} | ||
+ | {{hl2msg|byte|option5|}} | ||
+ | {{hl2msg|byte|potentialVotes|}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | ==== vote_passed ==== | ||
+ | |||
+ | {{begin-hl2msg|vote_passed|string}} | ||
+ | {{hl2msg|string|details|}} | ||
+ | {{hl2msg|string|param1|}} | ||
+ | {{hl2msg|byte|team|}} | ||
+ | {{end-hl2msg}} | ||
+ | |||
+ | ==== vote_failed ==== | ||
+ | |||
+ | {{begin-hl2msg|vote_failed|string}} | ||
+ | {{hl2msg|byte|team|}} | ||
+ | {{end-hl2msg}} | ||
== Example voting plugin == | == Example voting plugin == | ||
This is a basic plugin that starts a vote, "Is gaben fat?". It does not ensure the same client does not vote multiple times, nor does it actually kick the user. | This is a basic plugin that starts a vote, "Is gaben fat?". It does not ensure the same client does not vote multiple times, nor does it actually kick the user. | ||
− | < | + | <sourcepawn>#include <sourcemod> |
// TF2's internal map vote uses client index 99 for the server | // TF2's internal map vote uses client index 99 for the server | ||
#define TF2_SERVER_CLIENT_INDEX 99 | #define TF2_SERVER_CLIENT_INDEX 99 | ||
#define TF2_TEAM_ALL -1 | #define TF2_TEAM_ALL -1 | ||
− | + | int g_iYesVotes; | |
− | + | int g_iNoVotes; | |
+ | |||
#define MAX_VOTES 4 | #define MAX_VOTES 4 | ||
− | public Plugin | + | public Plugin myinfo = |
{ | { | ||
− | + | name = "Test Yes/No Vote", | |
− | + | author = "Powerlord", | |
− | + | description = "A test vote plugin for the AlliedMods wiki", | |
− | + | version = "1.0", | |
− | + | url = "http://wiki.alliedmods.net/TF2_Voting" | |
} | } | ||
− | public OnPluginStart() | + | public void OnPluginStart() |
{ | { | ||
− | + | RegConsoleCmd("testvote", Callvote_Handler); | |
− | + | RegConsoleCmd("vote", vote); | |
} | } | ||
− | public Action | + | public Action Callvote_Handler(int client, int args) |
{ | { | ||
− | + | BfWrite bf = UserMessageToBfWrite(StartMessageAll("VoteStart", USERMSG_RELIABLE)); | |
− | + | bf.WriteByte(TF2_TEAM_ALL); | |
− | + | bf.WriteByte(TF2_SERVER_CLIENT_INDEX); | |
− | + | bf.WriteString("#TF_playerid_noteam"); | |
− | + | bf.WriteString("Is gaben fat?"); | |
− | + | bf.WriteBool(true); | |
− | + | EndMessage(); | |
− | + | ||
− | + | g_iYesVotes = 0; | |
− | + | g_iNoVotes = 0; | |
− | + | ||
− | + | return Plugin_Handled; | |
} | } | ||
− | UpdateVotes() | + | void UpdateVotes() |
{ | { | ||
− | + | if (g_iYesVotes + g_iNoVotes >= MAX_VOTES) | |
− | + | { | |
− | + | PrintToServer("voting complete!"); | |
− | + | if (g_iYesVotes > g_iNoVotes) | |
− | + | { | |
− | + | BfWrite bf = UserMessageToBfWrite(StartMessageAll("VotePass")); | |
− | + | bf.WriteByte(TF2_TEAM_ALL); | |
− | + | bf.WriteString("#TF_playerid_noteam"); | |
− | + | bf.WriteString("Gaben is fat"); | |
− | + | EndMessage(); | |
− | + | } | |
− | + | else | |
− | + | { | |
− | + | BfWrite bf = UserMessageToBfWrite(StartMessageAll("VoteFailed")); | |
− | + | bf.WriteByte(TF2_TEAM_ALL); | |
− | + | // Check list of failure reasons | |
− | + | bf.WriteByte(3); | |
− | + | EndMessage(); | |
− | + | } | |
− | + | } | |
} | } | ||
− | // | + | // If the TF2 vote system is running (sv_allow_votes 1), this needs to be a command listener |
− | public Action | + | // because TF2 registers the vote command only when a vote is ongoing, and thus hooking it using RegConsoleCmd doesn't work. |
+ | public Action vote(int client, int args) | ||
{ | { | ||
− | + | char arg[8]; | |
− | + | GetCmdArg(1, arg, 8); | |
− | + | ||
− | + | PrintToServer("Got vote %s from %i", arg, client); | |
− | + | ||
− | + | int option = 0; | |
− | + | if (strcmp(arg, "option1", true) == 0) | |
− | + | { | |
− | + | g_iYesVotes++; | |
− | + | } | |
− | + | else if (strcmp(arg, "option2", true) == 0) | |
− | + | { | |
− | + | g_iNoVotes++; | |
− | + | option = 1; | |
− | + | } | |
− | + | ||
− | + | Event event = CreateEvent("vote_cast"); | |
− | + | event.SetInt("entityid", client); | |
− | + | event.SetInt("team", -1); | |
− | + | event.SetInt("vote_option", option); | |
− | + | event.Fire(); | |
− | + | ||
− | + | UpdateVotes(); | |
− | }</ | + | |
+ | return Plugin_Continue; | ||
+ | }</sourcepawn> | ||
See the following images for examples what this looks like: | See the following images for examples what this looks like: | ||
Line 110: | Line 368: | ||
[http://cloud.steampowered.com/ugc/542899697038049485/C469BD2D358F9524A8B17164AD3FE06A3574E837/ Vote failed] | [http://cloud.steampowered.com/ugc/542899697038049485/C469BD2D358F9524A8B17164AD3FE06A3574E837/ Vote failed] | ||
+ | |||
+ | ==See Also== | ||
+ | * [[Left 4 Voting]] | ||
+ | * [[Left 4 Voting 2]] | ||
+ | * [https://forums.alliedmods.net/showthread.php?t=162164 BuiltinVotes], a SourceMod extension that exposes a voting API that uses this voting system. |
Latest revision as of 23:30, 29 March 2020
This is for SourceMod plugin development involving the TF2 Vote System. If you are looking into the details on configuring TF2 Voting on your TF2 server, see Voting on the Official Team Fortress Wiki.
Team Fortress 2 has a new VGUI voting system based on the Left 4 Dead Voting system and is controlled by Game Events and User Messages. You can use either a string from the resource file, or TF_playerid_noteam which will let you create any vote you want.
Contents
How voting works
- A client issues a callvote with the vote type and argument, or the server calls a vote (server uses entity index 99).
- The server sends a vote_options event.
- For Yes/No votes, the values it sends are Yes and No (in that order). For Multiple Choice votes, the actual vote options are sent.
- The VoteStart User Message is sent, the last argument determines the vote type.
- Clients use the "vote" command to register their votes (option1 through option5), after which the server sends a vote_cast event with a 0-based option number (so option1 = 0, option5 = 4). It also updates the vote_controller entity's vote counts.
- When the vote is complete, the server sends either a VotePass or VoteFailed User Message.
Server Entity
The server should update this as appropriate. Unfortunately, the valid values for m_iActiveIssueIndex is unknown.
Name: | vote_controller (CVoteController) | |||||||||||||||
Structure: |
|
Console Commands
callvote
Note: This command can take 0 arguments. If it does, a VoteSetup usermessage is returned to that user.
Name: | callvote | ||||||
Structure: |
|
kicktype_string is one of these (at least in the English version):
- other
- cheating
- idle
- scamming
This data is primarily there if you want to intercept these messages in a plugin.
CallVoteFailed UserMessage is sent back if a vote cannot be called unless a vote is already being displayed.
vote
Note: This command is only valid when a vote is ongoing.
Name: | vote | |||
Structure: |
|
Note that these are 1-based, but the vote_cast event is 0-based.
User Messages
Note: These user messages use unsigned bytes for the team number. Since the October 15, 2014 update, all teams is now represented by 0 (it used to be -1 / 255)
The User Messages that exist in the TF2 Voting system are:
VoteSetup
Note: Sent to a player when they load the Call Vote screen (which sends the callvote command to the server), lists what votes are allowed on the server
Note: This changed in the October 15, 2014 update
Name: | VoteSetup | ||||||
Structure: |
|
Name: | issue | |||||||||
Structure: |
|
There is one "issue" sent for each supported issue. Valid potential_issue strings are:
- Kick
- RestartGame
- ChangeLevel
- NextLevel
- ScrambleTeams
- ChangeMission
- TeamAutoBalance
- ClassLimits
Valid translation name strings are:
- #TF_Kick
- #TF_RestartGame
- #TF_ChangeLevel
- #TF_NextLevel
- #TF_ScrambleTeams
- #TF_ChangeMission
- #TF_TeamAutoBalance_Enable
- #TF_TeamAutoBalance_Disable
- #TF_ClassLimit_Enable
- #TF_ClassLimit_Disable
By default, disabled issues are omitted (sv_vote_ui_hide_disabled_issues 1).
CallVoteFailed
Note: Sent to a player when they attempt to call a vote and fail.
Name: | CallVoteFailed | ||||||
Structure: |
|
Valid Failure Codes are:
1 - VOTE_FAILED_TRANSITIONING_PLAYERS - Cannot call vote while other players are still loading. This appears to be a holdover from L4D2; use code 10 instead.
2 - VOTE_FAILED_RATE_EXCEEDED - You called a vote recently and cannot call another one for X seconds (second argument to CallVoteFailed specifies the number of seconds)
5 - VOTE_FAILED_ISSUE_DISABLED - Server has disabled that issue.
6 - VOTE_FAILED_MAP_NOT_FOUND - That map does not exist.
7 - VOTE_FAILED_MAP_NAME_REQUIRED - You must specify a map name
8 - VOTE_FAILED_FAILED_RECENTLY - This vote failed recently
9 - VOTE_FAILED_TEAM_CANT_CALL - Your team cannot call this vote
10 - VOTE_FAILED_WAITINGFORPLAYERS - Voting not allowed while Waiting for Players
11 - VOTE_FAILED_PLAYERNOTFOUND - Doesn't appear to work
12 - VOTE_FAILED_CANNOT_KICK_ADMIN - Can't Kick Server Admin
13 - VOTE_FAILED_SCRAMBLE_IN_PROGRESS - Vote Scramble is pending
14 - VOTE_FAILED_SPECTATOR - Spectators can't vote
15 - VOTE_FAILED_NEXTLEVEL_SET - Next level already set
16 - VOTE_FAILED_MAP_NOT_VALID - Map is not in the map list
17 - VOTE_FAILED_CANNOT_KICK_FOR_TIME - Cannot kick yet. Used for MvM
18 - VOTE_FAILED_CANNOT_KICK_DURING_ROUND - Cannot kick during round. Used for MvM
19 - VOTE_FAILED_MODIFICATION_ALREADY_ACTIVE - Modification is already active, used by Eternaween
VoteStart
Note: Sent to all players currently online. The default implementation also sends it to bots.
Name: | VoteStart | |||||||||||||||
Structure: |
|
Valid issue strings:
- #TF_vote_kick_player_other - Generic Kick vote. param1 is player name.
- #TF_vote_kick_player_idle - Idler Kick vote. param1 is player name.
- #TF_vote_kick_player_cheating - Cheater Kick vote. param1 is player name.
- #TF_vote_kick_player_scamming - Scammer Kick vote. param1 is player name.
- #TF_vote_restart_game - Restart map vote. param1 ignored.
- #TF_vote_changelevel - Change map vote. param1 is map name.
- #TF_vote_nextlevel - Set next level vote. param1 is map name.
- #TF_vote_nextlevel_choices - End of map map vote. param1 ignored. This vote is not in the user vote menu.
- #TF_vote_scramble_teams - Scramble teams vote. param1 ignored.
- #TF_vote_should_scramble_round - Scramble teams at round end vote. param1 ignored. This vote is not in the user vote menu.
- #TF_vote_td_start_round - Start the round? param1 ignored. This vote is not in the user vote menu.
- #TF_vote_changechallenge - Change MvM mission? param1 is mission. This vote is in the menu on MvM maps.
- #TF_vote_eternaween - Activate Halloween mode? param1 ignored. This vote is activated by someone using the Eternaween item.
- #TF_vote_autobalance_enable - Active Autobalance? param1 ignored.
- #TF_vote_autobalance_disable - Disable Autobalance? param1 ignored.
- #TF_vote_classlimits_enable - Enable class limits? param1 ignored.
- #TF_vote_classlimits_disable - Disable class limits? param1 ignored.
- #TF_playerid_noteam - Unofficially used for a custom vote. param1 is custom vote issue.
VotePass
Note: Sent to all players after a vote passes.
Name: | VotePass | |||||||||
Structure: |
|
Valid success strings:
- #TF_vote_passed_kick_player - Kick vote passed. param1 is player name.
- #TF_vote_passed_restart_game - Restart vote passed. param1 ignored.
- #TF_vote_passed_changelevel - Change level vote passed. param1 is map name.
- #TF_vote_passed_nextlevel - Set next level vote passed. param1 is map name.
- #TF_vote_passed_nextlevel_extend - Current map has been extended. param1 ignored.
- #TF_vote_passed_scramble_teams - Team Scramble vote passed. param1 is ignored.
- #TF_vote_passed_td_start_round - Round start vote passed. param1 is ignored.
- #TF_vote_passed_changechallenge - MvM mission change passed. param1 is new mission.
- #TF_vote_passed_eternaween - Eternaween vote passed. param1 ignored.
- #TF_vote_passed_autobalance_enable - Autobalance enable vote passed. param1 ignored.
- #TF_vote_passed_autobalance_disable - Autobalance disable vote passed. param1 ignored.
- #TF_vote_passed_classlimits_enable - Class Limit enable vote passed. param1 ignored.
- #TF_vote_passed_classlimits_disable - Class Limit disable vote passed. param1 ignored.
- #TF_playerid_noteam - Unofficially used for a custom success string. param1 is custom success string.
VoteFailed
Note: Sent to all players after a vote fails.
Name: | VoteFailed | ||||||
Structure: |
|
Valid Failure codes are:
0 - VOTE_FAILED_GENERIC - Generic "Vote Failed" message
3 - VOTE_FAILED_YES_MUST_EXCEED_NO - Yes votes must outnumber No votes
4 - VOTE_FAILED_QUORUM_FAILURE - Not Enough Votes
Events
Server to Client Events
vote_cast
Note: Sent to all players when a player chooses a vote option (or more specifically, the server receives a vote command)
Name: | vote_cast | |||||||||
Structure: |
|
This event is unusual as it uses the client's entity ID instead of its userid.
vote_options
Note: Sent to players before VoteStart UserMessage to populate choices for a multiple choice vote
Name: | vote_options | ||||||||||||||||||
Structure: |
|
If sv_vote_issue_nextlevel_allowextend is set to 1, option5 is "Extend current Map"
Client-only Events
These events are passed between the TF2 client and the client's VGUI voting panels. They have no server interaction and the server should not be touching them in any way.
vote_ended
Name: | vote_ended | |
Structure: |
|
vote_started
Name: | vote_started | ||||||||||||
Structure: |
|
vote_changed
Note: These values are read from the vote_controller entity on the server
Name: | vote_changed | ||||||||||||||||||
Structure: |
|
vote_passed
Name: | vote_passed | |||||||||
Structure: |
|
vote_failed
Name: | vote_failed | |||
Structure: |
|
Example voting plugin
This is a basic plugin that starts a vote, "Is gaben fat?". It does not ensure the same client does not vote multiple times, nor does it actually kick the user.
#include <sourcemod> // TF2's internal map vote uses client index 99 for the server #define TF2_SERVER_CLIENT_INDEX 99 #define TF2_TEAM_ALL -1 int g_iYesVotes; int g_iNoVotes; #define MAX_VOTES 4 public Plugin myinfo = { name = "Test Yes/No Vote", author = "Powerlord", description = "A test vote plugin for the AlliedMods wiki", version = "1.0", url = "http://wiki.alliedmods.net/TF2_Voting" } public void OnPluginStart() { RegConsoleCmd("testvote", Callvote_Handler); RegConsoleCmd("vote", vote); } public Action Callvote_Handler(int client, int args) { BfWrite bf = UserMessageToBfWrite(StartMessageAll("VoteStart", USERMSG_RELIABLE)); bf.WriteByte(TF2_TEAM_ALL); bf.WriteByte(TF2_SERVER_CLIENT_INDEX); bf.WriteString("#TF_playerid_noteam"); bf.WriteString("Is gaben fat?"); bf.WriteBool(true); EndMessage(); g_iYesVotes = 0; g_iNoVotes = 0; return Plugin_Handled; } void UpdateVotes() { if (g_iYesVotes + g_iNoVotes >= MAX_VOTES) { PrintToServer("voting complete!"); if (g_iYesVotes > g_iNoVotes) { BfWrite bf = UserMessageToBfWrite(StartMessageAll("VotePass")); bf.WriteByte(TF2_TEAM_ALL); bf.WriteString("#TF_playerid_noteam"); bf.WriteString("Gaben is fat"); EndMessage(); } else { BfWrite bf = UserMessageToBfWrite(StartMessageAll("VoteFailed")); bf.WriteByte(TF2_TEAM_ALL); // Check list of failure reasons bf.WriteByte(3); EndMessage(); } } } // If the TF2 vote system is running (sv_allow_votes 1), this needs to be a command listener // because TF2 registers the vote command only when a vote is ongoing, and thus hooking it using RegConsoleCmd doesn't work. public Action vote(int client, int args) { char arg[8]; GetCmdArg(1, arg, 8); PrintToServer("Got vote %s from %i", arg, client); int option = 0; if (strcmp(arg, "option1", true) == 0) { g_iYesVotes++; } else if (strcmp(arg, "option2", true) == 0) { g_iNoVotes++; option = 1; } Event event = CreateEvent("vote_cast"); event.SetInt("entityid", client); event.SetInt("team", -1); event.SetInt("vote_option", option); event.Fire(); UpdateVotes(); return Plugin_Continue; }
See the following images for examples what this looks like:
See Also
- Left 4 Voting
- Left 4 Voting 2
- BuiltinVotes, a SourceMod extension that exposes a voting API that uses this voting system.