PS : Você poderá ativar e configurar o plugin de votação mais tarde se desejar no painel da sua página do servidor.
- Download the plugin here: https://pt.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 Redm server
- Add in your server.cfg file the lines below:
ensure vote
# O token é obrigatório. É o token da sua página do servidor (que estará disponível em seu painel).
set vote_token "XXXXXXXXX"
# A porta de escuta do plugin. Por padrão, é a porta 8192, mas você pode especificar a que desejar. Não se esqueça de configurá-la também no formulário abaixo.
set vote_port "8192"
Atenção: A porta deve estar aberta e livre em UDP, ela deve ser diferente da do seu servidor Redm. Esta porta é usada para escutar os votos realizados em sua página do 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)
-- Acrescente ações aqui quando um voto for recebido.
-- Por exemplo : dar dinheiro dentro do jogo, dar pontos, economizar em 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!