> For the complete documentation index, see [llms.txt](https://simple.superiormc.cn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://simple.superiormc.cn/mythicrewards/info/configuration-files.md).

# 🛠️Configuration files

* `items`: The location for storing saved item files. It will only be generated after save any item with `/mc saveitem` command. <mark style="color:red;">Do not modify any content here</mark>.
* `languages`: The location for storing language files. You can set the language file used by the plugin through the `config-files.language` option in the `config.yml` file. You can customize various messages within the plugin game through language files. It is not supported to display the corresponding language file based on the player client language. You can only display the same language for all players.
* `rules`: The location for storing **reward rule** configuration files.
* `config.yml` file: The location for main common settings for plugins.
* `generated-item-format.yml` file: When using the `/mr generateeitemformat` command, we will parse the item you are holding into an **ItemFormat** and store the parsed **ItemFormat** content in this file.
* `XX_xx.json` file: Localized files automatically generated through [Localized Item Name](broken://pages/kHobouLr87YLYg8FXG4w) feature. The name of this file is determined based on the localized language you have set for this feature, but it usually ends in `. json`.

## Config.yml file content

```yaml
# MythicRewards by @PQguanfang
#
# Read the Wiki here: https://manyou.gitbook.io/mythicrewards

debug: false

# Support value:
# NORL = The number of rules limited (up to 8 reward rules)
# ATL = Action types limited (you can not use drop_item and give_item action)
# FULL = All features without any limits (require server install PREMIUM version of UltimateShop or MythicTotem or MythicPrefixes)
license-type: NORL

config-files:
  force-parse-mini-message: true
  language: 'en_US'

placeholders:
  result:
    unknown-player: 'Unknown'
    damage-format: "%.0f"
    percentage-format: "%.1f"
```


---

# 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://simple.superiormc.cn/mythicrewards/info/configuration-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.
