# Screen info

Content displayed on the screen, on the right side of the screen as scoreboard or pressing <kbd>TAB</kbd> button for a list of players with unique tablist content. These will be updated on game tick and when game status changed.

These are the list of game status options to change content:

* `running` - when a game is in running state
* `waiting` - when a game is in waiting (lobby) state
* `starting` - when a game is in starting state
* `winner_celebration` - when a game has ended and celebrating the winner player
* `freeze` - when a game is in freeze mode

{% hint style="warning" %}
If you want to use an alternative plugin for displaying content on the screen, make sure to remove this option from configuration like so:

```yml
screen-info: []
```

This ensures that this option won't be loaded.
{% endhint %}

## Preview

<div><figure><img src="/files/zTidBgOvADAQlzexULFC" alt=""><figcaption></figcaption></figure> <figure><img src="/files/tmKlWBTzoJhC0Zfgu4Lt" alt=""><figcaption></figcaption></figure></div>

## Features

* Automatic update on game tick and game state change
* Supports [scoreboard](https://minecraft.wiki/w/Scoreboard), tablist and player list name modifying
* Option to allow for spectator players to see these content

{% hint style="warning" %}
The scoreboard can have a maximum of 15 lines as the client does not allows more.
{% endhint %}

## Configuration

```yml
screen-info:
  gameState:
    spectators-can-see: true
    tab:
      player-list-name: '%player_name%'
      header:
      - <red>Rage<aqua>Mode<blue> waiting lobby
      footer:
      - <gold>Players waiting:<gray> %players%
    scoreboard:
      title: <blue>Lobby
      content:
      - ''
      - <gold>Players:<red> %players%
      - <gold>Spectators:<red> %spectators%
      - ''
```

* `gameState` - Game state name
* `spectators-can-see` - (Optional) allows spectators to see this content
* `tab`&#x20;
  * `player-list-name` - (Optional) changes player list name that appears on tablist
  * `header` - `footer` - (Both optional and can be empty as well)
* `scoreboard`
  * `title` - The title to display on the scoreboard
  * `content` - The content to display on the scoreboard with a limit of 15 lines


---

# 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://mdswork.gitbook.io/ragemode-docs/global-game-guides/screen-info.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.
