P.S.: Вы можете активировать и настроить плагин голосования позже, если хотите, на панели страницы вашего сервера.
- Download the plugin here: https://ru.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
# Токен является обязательным. Данный токен вы можете найти в панели управления вашим сервером.
set vote_token "XXXXXXXXX"
# Порт прослушивания плагина. Порт по умолчанию - 8192, но вы можете указать любой порт. Не забудьте настроить его в форме ниже.
set vote_port "8192"
Внимание: вы должны открыть порт в UDP, который должен отличаться от вашего сервера Redm. Данный порт используется для получения информации о количестве голосов на странице вашего сервера.
- 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)
-- Добавлять действия при получении голоса.
-- Например, подарите внутриигровую валюту, баллы и так далее...
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!