Callvote 6.6.3

dotnet add package Callvote --version 6.6.3
                    
NuGet\Install-Package Callvote -Version 6.6.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Callvote" Version="6.6.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Callvote" Version="6.6.3" />
                    
Directory.Packages.props
<PackageReference Include="Callvote" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Callvote --version 6.6.3
                    
#r "nuget: Callvote, 6.6.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Callvote@6.6.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Callvote&version=6.6.3
                    
Install as a Cake Addin
#tool nuget:?package=Callvote&version=6.6.3
                    
Install as a Cake Tool

Callvote

The sucessor of callvote.

A plugin that allows calling and voting for Kick, RestartRound, Kill, RespawnWave, FriendlyFire, or Custom Votes using KEYBINDS or CONSOLE COMMANDS in the same format as the Source Engine (Left 4 Dead 2/Counter-Strike: Global Offensive).

If you want to develop using Callvote, please install the Nuget Package

Examples

VotingHandler.AddOptionToVoting("nothing", "<size=100>NOTHING!!!</color>");
VotingHandler.AddOptionToVoting("nothing1", "<size=100>NOTHING1!!!</color>");
VotingHandler.CallVoting(new CustomVoting(player, $"{player.Nickname} asks: Do nothing!!!!!", "NothingBurguerPlugin.DoNothing"));
VotingHandler.CallVoting(new CustomVoting(player, $"{player.Nickname} asks: Enable FF?", "NothingBurguerPlugin.FF", new FFVoting(player)));
Dictionary<string, string> options = new()
{
   ["nothing"] = "<size=100>NOTHING!!!</color>",
   ["nothing1"] = "<size=100>NOTHING2!!!</color>"
};

CustomVoting vote = new CustomVoting(player, $"{player.Nickname} asks: Do nothing!!!!!", "NothingBurguerPlugin.DoNothing", null, options);

VotingHandler.CallVoting(vote);

private void ReviveSCPs(DiedEventArgs ev)
{
   if (ev.Player.IsScp)
      {
         void callback(Voting vote)
         {
            int yes = vote.Counter[Callvote.Callvote.Instance.Translation.CommandYes];
            int no = vote.Counter[Callvote.Callvote.Instance.Translation.CommandNo];
            if (yes > no)
            {
               ev.Player.RoleManager.ServerSetRole(ev.TargetOldRole, PlayerRoles.RoleChangeReason.None);
               Map.Broadcast(5, $"{ev.TargetOldRole} respawned.");
               return;
            }
                    Map.Broadcast(5, "The Voting Failed.");
         }
         BinaryVoting reviveSCP = new BinaryVoting(Server.Host, $"Revive {ev.TargetOldRole}?", $"NothingBurguerPlugin.Respawn", callback);
         VotingHandler.CallVoting(reviveSCP);
      }
}

Download

This plugin requires Exiled or LabAPI.

You can download the latest version of Callvote here.

Soft Depedencies

Replaces Broadcasts with Hints.

❗️ Do not install both — they are incompatible with each other.

Special thanks to:

https://github.com/Playeroth and https://github.com/Edi369 for helping me with translations and adding webhook functionality.

https://github.com/PatPeter for giving the permission to continue the development of callvote.

https://github.com/vladflotsky for giving adivice and guidance while I was rewritting the plugin.

Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
6.6.3 0 2/5/2026
6.6.2 31 2/3/2026