Frequently Asked Questions

Frequently Asked Questions
6 Questions
1
General information
  • Taking part is free of charge.
  • You can vote every 12 hours.
  • The toplist is reset every Monday.
  • In the comments, the owner's comment is always pinned to the top. Use it to announce current events.
2
Why list your server in a toplist?

New sites in particular gain visitors through a toplist entry and get a chance to promote their project. But long-established sites use the toplist as well, to keep a steady stream of visitors coming in.

3
How does the ranking work?

Servers are sorted in descending order by the number of valid in-votes they received during the current week. A week always runs from Monday to Sunday. The reset happens at night, between 0:00 and 5:00.

A vote counts as valid if the visitor has not voted for that server within the last 12 hours.

4
Metin2 graphics

Metin2, the Metin2 logo and Metin2 graphics are trademarks of YMIR Co., Ltd. Metin2 Germany is published by Gameforge 4D GmbH. All other marks used here are the property of their respective owners. We are not affiliated or partnered with them in any way. This is a Metin2 P Server 2026 toplist for Metin2 private servers.

5
Full reset
  • Full reset every 7 days.
  • Voting possible every 24 hours.
6
API

To check via API whether a user has voted, call the following link:

https://www.metin2-toplist.com/api/{SERVERID}/{USERID}/

  • {SERVERID} = the ID of your server within the toplist
  • {USERID} = the ID of the account within your server database

The response is nothing but true or false, depending on whether a reward should be granted or not.

To vote, your users have to use this link:

https://www.metin2-toplist.com/vote/{SERVERID}/{USERID}/

A detailed guide with a code example can be found further down this page.

No matching questions found.
API Documentation
Vote System
How the Vote System works

With our API you can automatically check if a player has voted for your server and reward them. You only need two things: the Vote Link for your players and the API Link for your server.

STEP 1 Give the Vote Link to your players

Your players need to open this link to vote for your server:

https://www.metin2-toplist.com/vote/{SERVERID}/{USERID}/
{SERVERID}
Your Server ID in the Toplist
{USERID}
The player's Account ID in your database
STEP 2 Check vote via API

Call this link from your server to check if a player has voted:

https://www.metin2-toplist.com/api/{SERVERID}/{USERID}/
Response:
true
Player has voted → Give reward
false
Player has not voted
Example

Your server has the ID 42 and the player has Account ID 1337:

Vote-Link: https://www.metin2-toplist.com/vote/42/1337/
API-Check: https://www.metin2-toplist.com/api/42/1337/
CODE PHP Example

Copy this code into your server to automatically check votes and give rewards:

vote_check.php
<?php

// Your Server ID in the Toplist
$server_id = 42;

// The player's Account ID (from your database)
$user_id = 1337;

// Call the API
$url = "https://www.metin2-toplist.com/api/{$server_id}/{$user_id}/";
$result = file_get_contents($url);

// Check result
if (trim($result) == "true") {
    // Player has voted - give reward!
    echo "Thanks for voting! You will receive your reward.";
} else {
    // Player has not voted yet
    echo "You have not voted yet!";
}
Didn't find what you were looking for?
Contact us