How to Install and Configure Votifier on Your Minecraft Server
A guide for using Votifier (NuVotifier) to add voting, configuring rewards, and more to your Minecraft server with voting sites.
NuVotifier is a plugin which can be used to integrate the voting functionality to your Minecraft server and have your server appear on voting sites. This plugin is a fork of the original outdated voting plugin: Votifier. NuVotifier offers robust code, compatible with the latest Minecraft updates, and vote forwarding.
The plugin can also be installed on proxies like BungeeCord, Waterfall, Velocity, and others to be able to forward votes to other servers on the network. The plugin is also backwards-compatible with Minecraft versions so all versions from 1.7.2 to the latest version (1.19.2 at the time of writing) is supported. Neat, right?
You can use voting sites to boost the rank on the server lists to have your server appear higher, and give players rewards when they vote. This guide will walk you through installation and usage of NuVotifier (Votifier) on your Minecraft server as well as configuring rewards!
Installation
To install and configure NuVotifier on your Minecraft server, follow these steps:
- Download the latest version of NuVotifier from SpigotMC or Github.
- Place the downloaded JAR file in the
plugins
(The same directory,plugins
, can be used for both Bukkit-based servers and proxies) folder of your Minecraft server. Refer to this guide for help. - Restart the server. The plugin will automatically be installed and activated.
Normal Bukkit-based server setup
- Open a listening port for the plugin:
To have voting sites listen for votes through the plugin, you need to have an open port that can be accessed by the site available. You can do this by heading into the Network
tab on the Fractal dashboard, and press the “Create Allocation” button to create a port.
The default port NuVotifier uses is 8192
however you can change that value to any open and unused port between 1
and 65535
.
- Label the newly-created port on the
Network
tab:
Once the port is made, you can label the port for future reference in the Notes
area. Do not make this the Primary port as that would be the port reserved to connect to your Minecraft server.
- Configure the port and the IP address in the configuration file
Head to /plugins/Votifier/
and open the config.yml
file. There, modify the port
value (on line 6
at the time of writing this guide) to the port that you’ve created on the previous step.
The ip
value is by default set to 0.0.0.0
which listens to all interfaces (IP addresses) that is bound to your server. The default value should usually work, and in the case it doesn’t, change it to the IP address that was opened with the port you created in step 1.
- Configure rewards (optional)
Refer to this section for recommended options and a guide on configuring rewards.
Bungeecord / Velocity Setup
- Installing the plugin:
NuVotifier’s jar is compatible with both proxies, and Bukkit-based servers. You will need to install the plugin on all of the servers you want to have voting functionality with, as well as the proxy server (this can be Bungeecord, Waterfall, Velocity, etc).
Place the jar in the plugin directory of the respective servers, and restart those servers to allow it to generate the configuration files and load the plugin onto the server.
- Installing vote listeners:
Similarily, from the previous step, each server that requires voting functionality will also require a vote listener plugin as well. Refer to this section for popular and recommended choices.
Once you’ve selected one, install the plugin on each server, including the proxy.
- Configuring vote forwarding
Backend Servers (Bukkit-based servers)
As we are taking a Velocity / Bungeecord approach, we need to configure vote forwarding to ensure votes are passed on from proxy to backend servers.
To do this, we need to set the method
value in the config file to use pluginMessaging
. This also means we are not passing votes through ports, rather through plugin messaging so we can disable ports in all of the backend server. This can be done by changing the port
value to -1
.
Do NOT do this part on the proxy server.
Proxy Servers (Velocity / Bungeecord)
Open a port for NuVotifier in the Network
tab. See step 1 and 2 from the “Normal Bukkit-based Server Setup” section.
Now, moving onto the proxy configuration file, head to /plugins/Votifier
and open the config.toml
file. There, you need to input the port you’ve just created into the port
value. Furthermore, you also need to set the method
under the forwarding
section to pluginMessaging
.
This concludes basic setup where all all votes are forwarded to each server that is available through the /server
command. You can make further modifications and changes to the way it’s setup by using NuVotifier’s guide as reference
Adding your server to a voting site
By adding NuVotifier and a rewards plugin to your Minecraft server, you can configure votes and add your server to a Minecraft server list site, like minecraftservers.org.
- Register for an account at minecraftservers.org. Please ensure to use a strong password for your account!
- Once registered, and you have verified your account, press the “add a server” button on the top.
- Fill in the details of your server:
- Name: The name of your server (can be anything like “My Fractal Server” for example).
- IP/Host: The IP address / FQDN / domain of your server/
- Port: Enter the port of your Minecraft server. Default is
25565
, however it can vary on your setup. It is the 4-5 digit number beside the IP address. - Enable Votifier: Enable this if you have installed the Votifier plugin.
- Discord: Add the discord invite link to your community if you have one (optional).
- Country: Where the server / community is located (optional).
- Banner: The featured image or gif displayed on the site with your server.
- Description: What your community is about, what you offer, what makes your server unique!
- Tags: Things about your server, for example
bedwars
,smp
,skywars
,prison
, etc. - YouTube Video: Add a link to a YouTube video describing and featuring your server (optional).
- I am human: are you hooman?
- Don’t forget to “Enable Votifier”. There, enter the following information:
- IP address (the numbers before the colon).
- The port you’ve created for Votifier here.
Public Key
, copy the contents of the/plugins/Votifier/rsa/public.key
file, and paste it into the field.
- Test the system! Press the “Send Test Vote” button, and if it’s successful, you should see the plugin respond back in the server console.
/testvote
(for Bukkit-based or Sponge servers), or /ptestvote
(for Velocity / Bungeecord servers).Configure rewards
- Install a vote listener plugin
As mentioned before, NuVotifier does not include listener functionality. Here are some common popular choices:
- SuperbVote
- VotingPlugin (Advanced)
- UltimateVotes (Paid)
- Enjin (Requires Enjin)
We’ll use SuperbVote as an example for this guide, however most voting plugins should be relatively similar to setup.
- Configure rewards on vote
Head to /plugins/SuperbVote
and open the config.yml
file. Find the rewards
value in the file (line 50 at the time of writing, or use CTRL + F
to search) and configure the commands that are executed.
As the plugin also offers if
functionality, you can configure different players to receive different rewards depending on the permission they have.
Example
You can use the following placeholders to configure the commands and the broadcast message:
%player%
: Player’s username.%player_uuid%
: Player’s UUID.%service%
: The service where the vote came from.%votes%
: Returns the number of votes the player has.- PlaceholderAPI placeholders.
/vote
command for players by changing the vote-command
from false
to true
.Was this page helpful?