# TinkerStages

С его помощью Вы можете настроить этап, когда именно игрок может использовать/сделать материал или блок-механизм из мода.

## Примеры

На примерах можно увидеть накладываемые на предметы из мода ограничения, первыми идут инструменты, без этапа «one» их создание будет недоступно

{% code overflow="wrap" %}

```java
// Ограничивает создание инструментов до "one" этапа:
mods.TinkerStages.addGeneralCraftingStage("one");
```

{% endcode %}

<div align="left"><figure><img src="/files/MZIVUHEkh76zvdYuw3SW" alt=""><figcaption></figcaption></figure></div>

{% code overflow="wrap" %}

```java
// Ограничивает создание материалов до "two" этапа:
mods.TinkerStages.addGeneralPartBuildingStage("two");
```

{% endcode %}

<div align="left"><figure><img src="/files/UoM7dsRE1dUjJm4m7GtF" alt=""><figcaption></figcaption></figure></div>

```java
// Ограничивает применение модификаторов до "three" этапа:
mods.TinkerStages.addGeneralModifierStage("three");
```

<div align="left"><figure><img src="/files/bwr1B2ud2Yg2hcXgByxp" alt=""><figcaption></figcaption></figure></div>


---

# 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://wiki.aegis-mine.ru/modifications/sozdanie-kontenta/game-stages/tinkerstages.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.
