> For the complete documentation index, see [llms.txt](https://wiki.helpch.at/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.helpch.at/clips-plugins/chatreaction/files.md).

# Plugin's files

## Config

{% code title="config.yml" %}

```yaml
# ChatReaction version 1.8.0 configuration file
debug: false
check_updates: true
reaction_stats:
  track_stats: false
  top_players_size: 100
  hostname: localhost
  port: 3306
  database: chatreaction
  prefix: ''
  username: root
  password: ''
  ssl: false
reaction:
  interval: 500
  time_limit: 30
  players_needed_to_start: 4
  word_character_length: 10
  ignore_case: false
  use_custom_words: true
  split_words_by_line: true
  scramble_custom_words: true
  scramble_at_random: true
  scramble_spaces: false
  disabled_worlds:
  - world_nether
  - world_the_end
  reward_amount: 2
  rewards:
  - eco give @p 500
  - give @p diamondblock 100
messages:
  reaction_start:
  - '&8[&e&lReaction&8] &bHover for the word to type!'
  reaction_start_tooltip: '&f%word%'
  scramble_start:
  - '&8[&e&lReaction&8] &bHover for the word to unscramble!'
  scramble_start_tooltip: '&f%word%'
  reaction_end:
  - '&8[&e&lReaction&8] &cNobody got the word in time &4:('
  scramble_end:
  - '&8[&e&lReaction&8] &cNobody got the word in time &4:('
  - '&cThe word was &f%word%'
  reaction_win:
  - '&8[&e&lReaction&8] &f%player% &awon in &f%time% &aseconds!'
  scramble_win:
  - '&8[&e&lReaction&8] &f%player% &aunscrambled the word &f%word% &ain &f%time% &aseconds!'
hooks:
  qaplugin:
    enabled: true
    hint:
      charge: true
      charge_amount: 100.0
```

{% endcode %}

## Words

Words file is empty by default, This will be the file that you will set your custom words list.

{% code title="worlds.txt" %}

```
```

{% endcode %}


---

# 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://wiki.helpch.at/clips-plugins/chatreaction/files.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.
