# Ranking points

## Ranking points

After each game, you'll win or lose points depending on the results of the match.

More on that here :thumbsup:

{% content-ref url="/pages/1jz2LfUmxgkF0oIOBKIq" %}
[Points calculation](/multilivequeue/match/points-calculation.md)
{% endcontent-ref %}

The ranks have been divided in 5 sections: **S**, **A**, **B**, **C**, **D**, obviously the rank S being the better and D being the worst.

{% hint style="info" %}
The ranks could change depending on the amount of player
{% endhint %}

When you start using the bot you'll have 0 ranking points, rank D.

{% hint style="info" %}
Note that you cannot go bellow 0 points
{% endhint %}

To access a new rank you need to have a minimum of X points being:

* 100 points for **S**
* 75 points for **A**
* 50 points for **B**
* 25 points for **C**
* 0 points for **D**

> I have 52 ranking point, then I'm in **A** rank.

## Ranking file

All the rank will be stored in a Json file like this:

```json
{
    "S": {
        "min_points": 100,
        "players": []
    },
    "A": {
        "min_points": 75,
        "players": []
    },
    "B": {
        "min_points": 50,
        "players": []
    },
    "C": {
        "min_points": 25,
        "players": []
    },
    "D": {
        "min_points": 0,
        "players": [
            "PL / Aikawa Towa#5031"
        ]
    }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://pl-sergent.gitbook.io/multilivequeue/ranking/ranking-points.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
