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

# ⚠️Note

You can use **ALL** change rules at both `fake-changes` and `real-changes` option except we told you can not do that in some specific rules.&#x20;

You need use [mi-update-lore](/change-rules/mmoitems.md) rule after you modify **MMOItems**'s nbt data.

The rule name end with an `*` symbol indicates that the item will be replaced after change, the original item will disappear, and then the new item will replace the original item. The data of the original item will be lost. You can consider using rules starting with `keep` to convert some of the data from the original item to the new item (this will cause some additional performance consumption). For more info, please view [here](/change-rules/keep.md).

When using **SubChange** and **RandomChange** rules, if a rule that requires a Replace Item is used, the parent rule will also be automatically considered as requiring a Replace Item.

<mark style="color:red;">**When using those rules, please be sure to note that the replaced item after the change should no longer meet this rule again, otherwise the item will be constantly replaced, causing a dead loop and ultimately causing the server to crash!**</mark><mark style="color:red;">**&#x20;**</mark>*<mark style="color:red;">**REMEMBER THIS!**</mark>*

```yaml
fake-changes:
  add-name-first: '&fGood '
  set-name: '&fGood Diamond Sword'
  add-lore-last:
    - '&f&lCommon'
  set-lore:
    - '&7A good sword that all adventures should use!'
    - '&f&lCommon'
  add-lore-prefix: '%img_tooltip1%'
  set-custom-model-data: 5
  add-flags:
    - 'HIDE_ENCHANTS'

real-changes:
  add-enchants:
    POWER: 1
  remove-enchants:
    - 'POWER'
  remove-all-enchants: true
  replace-item:
    material: golden_sword
```


---

# 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:

```
GET https://mythicchanger.superiormc.cn/change-rules/note.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.
