> For the complete documentation index, see [llms.txt](https://docs.chrisgraph.fr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.chrisgraph.fr/plugins/hideseek/placeholders.md).

# Placeholders

Identifiant PlaceholderAPI :

```
hideseek
```

Format :

```
%hideseek_<placeholder>%
```

{% hint style="info" %}
Seuls les placeholders listés sur cette page sont acceptés par le code actuel.
{% endhint %}

### Placeholders disponibles

| Placeholder          | Description                                                                                   | Exemple    |
| -------------------- | --------------------------------------------------------------------------------------------- | ---------- |
| `%hideseek_state%`   | État de la session du joueur, ou de la première session trouvée si aucun joueur n'est fourni. | `En cours` |
| `%hideseek_players%` | Nombre de joueurs non spectateurs dans la session.                                            | `8`        |
| `%hideseek_hunters%` | Nombre de chercheurs dans la session.                                                         | `1`        |
| `%hideseek_hiders%`  | Nombre de cacheurs encore avec le rôle cacheur.                                               | `7`        |
| `%hideseek_time%`    | Temps restant formaté.                                                                        | `5:30`     |
| `%hideseek_map%`     | Nom de la carte active, ou nom de carte lié à l'arène.                                        | `village`  |
| `%hideseek_wins%`    | Valeur exposée mais actuellement statique.                                                    | `0`        |
| `%hideseek_losses%`  | Valeur exposée mais actuellement statique.                                                    | `0`        |
| `%hideseek_ratio%`   | Valeur exposée mais actuellement statique.                                                    | `0.00`     |

### Valeurs sans session

Si aucune session n'est trouvée :

| Placeholder          | Valeur       |
| -------------------- | ------------ |
| `%hideseek_state%`   | `En attente` |
| `%hideseek_players%` | `0`          |
| `%hideseek_hunters%` | `0`          |
| `%hideseek_hiders%`  | `0`          |
| `%hideseek_time%`    | `0`          |
| `%hideseek_map%`     | vide         |

{% hint style="warning" %}
Les statistiques ne sont pas encore stockées par le plugin actuel. Les placeholders `wins`, `losses` et `ratio` existent, mais retournent des valeurs fixes.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.chrisgraph.fr/plugins/hideseek/placeholders.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
