Rankings

Add a GTA server

Boost your Grand Theft Auto server by adding it on the #1 game servers ranking platform.

Top-Games, serving the success of game servers since 2012.

https://
IP
Port
IP
Port
IP
https://discord.gg/

slots
https://www.twitch.tv/
Our voting plugin is used to receive votes directly on your FiveM server. When a player votes, Top-Games directly notifies your server and you can thus reward your players or make a ranking of the best voters (for example), the possibilities are endless.

top.votifier.info.beta

PS: You can activate and configure the voting plugin later if you wish in the panel of your server page.

To install and configure the plugin it's simple:

  1. Download the plugin here: https://top-games.net/plugin/cfx/latest or directly on our Github page: https://github.com/Top-Serveurs/cfx-vote-plugin
  2. Copy the plugin in the resources/vote directory of your FiveM server
  3. Add in your server.cfg file the lines below:
    ensure vote
    # The token is mandatory. It is the token of your server page (which will be available on your panel).
    set vote_token "XXXXXXXXX"
    # The listening port of the plugin. Default port is 8192 but you can specify which one you want. Don't forget to configure it in the form below as well.
    set vote_port "8192"
    
    Attention: The port should free and open in UDP, it should be different from your FiveM server. This port is used to listen to the votes cast on your server page.
  4. Indicate the port you just configured (or the default port 8192) in the field below
  5. 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)
        -- Add actions here when a vote is received.
        -- For example: give In-Game money, give points, save in DB, ...
        print(playername)
        print(ip)
        print(date)
    end)
  6. Start your server. If you see the message "[VotePlugin] Active voting plugin on the port you just specified", all is done!

PS: You can activate and configure the voting plugin later if you wish in the panel of your server page.

To install and configure the plugin it's simple:

  1. Download the plugin here: https://top-games.net/plugin/fivem/latest or directly on our Github page: https://github.com/Top-Serveurs/cfx-vote-plugin
  2. Copy the vote directory in the resources directory of your FiveM server
  3. Configure the voting plugin in the vote/config.ini file like that:
    # The token is mandatory. It is the token of your server page (which will be available on your panel).
    Token="XXXX"
    # The listening port of the plugin. Default port is 8192 but you can specify which one you want. Don't forget to configure it in the form below as well.
    Port=8192
    
    Attention: The port should free and open in UDP, it should be different from your FiveM server. This port is used to listen to the votes cast on your server page.
  4. Indicate the port you just configured (or the default port 8192) in the field below
  5. Edit your server.cfg file for activate the plugin. Just add the following line:
    start vote
  6. 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)
        -- Add actions here when a vote is received.
        -- For example: give In-Game money, give points, save in DB, ...
        print(playername)
        print(ip)
        print(date)
    end)
  7. Start your server. If you see the message "[VotePlugin] Active voting plugin on the port you just specified", all is done!
Port