PD: Podrás activar y configurar el plugin de votación más tarde si lo deseas en el panel de tu ficha "Detalles del servidor".
- Download the plugin here: https://es.top-games.net/plugin/cfx/latest or directly on our Github page: https://github.com/Top-Serveurs/cfx-vote-plugin
- Copy the plugin in the resources/vote directory of your FiveM server
- Add in your server.cfg file the lines below:
ensure vote
# El Token es obligatorio. Es el token de tu ficha "Detalles del servidor" (que estará disponible en tu panel).
set vote_token "XXXXXXXXX"
# El puerto de escucha del plugin. Por defecto, es el puerto 8192 pero puedes especificar el que quieras. No olvides configurarlo también en el formulario de abajo.
set vote_port "8192"
Advertencia: El puerto debe estar abierto y libre en UDP., debe ser diferente de la de tu servidor FiveM. Este puerto se utiliza para escuchar los votos realizados en la ficha "Detalles del servidor".
- Indicate the port you just configured (or the default port 8192) in the field below
- Use the onPlayerVote event for receive the votes. An example is available in the vote/example.lua file and in the example_esx.lua file for a little example with ESX (remember to delete the examples). Here's an example:
AddEventHandler('onPlayerVote', function (playername, ip, date)
-- Añade las acciones aquí cuando se emita un voto.
-- Por ejemplo: dar dinero en el juego, dar puntos, ahorrar en BDD, ...
print(playername)
print(ip)
print(date)
end)
- Start your server. If you see the message "[VotePlugin] Active voting plugin on the port you just specified", all is done!