> For the complete documentation index, see [llms.txt](https://changelog.matrixemulator.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://changelog.matrixemulator.com/welcome/server/muserver/data/custom/customranking.md).

# CustomRanking

<mark style="color:green;">Registers the custom rankings displayed on the in-game Ranking screen (F8) — the name of the ranking and the titles of the two columns in the list. Maximum of 30 rankings, all inside block</mark> <mark style="color:green;"></mark><mark style="color:green;">`0`</mark><mark style="color:green;">.</mark>

```
0
//Index	Name			Coluna1        Coluna2
0	"Level"			"Character"	"Level"
1	"Master Level"		"Character"	"Level"
end
```

| **Column** | **Accepted values**              | **What it is**                                                                                         |
| ---------- | -------------------------------- | ------------------------------------------------------------------------------------------------------ |
| Index      | Number, in sequence (0, 1, 2...) | Identifies the ranking (it is what the client requests when navigating between tabs on the F8 screen). |
| Name       | Text in quotation marks          | Name of the ranking shown on the tab.                                                                  |
| Coluna1    | Text in quotation marks          | Title of the 1st column of the list (usually the character's name).                                    |
| Coluna2    | Text in quotation marks          | Title of the 2nd column of the list (the ranked value: level, resets, score, etc.).                    |

### <mark style="color:yellow;">Notes</mark>

* This file only defines the titles displayed — the actual values of the list (who is in each position and the number for each column) come from the database, queried at the moment the player opens that tab.
* The order of the lines defines the order of the tabs on the in-game ranking screen.
