PS: Sie können das Wahl-Plugin später aktivieren und konfigurieren, wenn Sie dies im Panel Ihrer Server-Datei wünschen.
- Download the plugin here: https://de.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
# Das Token ist obligatorisch. Es ist das Token Ihrer Server-Datei(die auf Ihrem Panel verfügbar sein wird).
set vote_token "XXXXXXXXX"
# Der Abhör-Port des Plugins. Standardmäßig ist es Port 8192, aber Sie können den gewünschten Port angeben. Vergessen Sie nicht, ihn auch in der untenstehenden Form zu konfigurieren.
set vote_port "8192"
Warnung: Der Port muss in UDP offen und frei sein, er muss sich von dem auf Ihrem Redm-Server unterscheiden. Dieser Port wird verwendet, um die auf Ihrer Server-Datei vorgenommenen Wahlen abzuhören.
- 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)
-- Fügen Sie hier Aktionen hinzu, wenn eine Wahl eingegangen ist.
-- Zum Beispiel: In-Game-Geld geben, Punkte geben, in DB speichern, ...
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!