# Install Guide

## UnearthMechanic

Install [Mechanics](https://www.spigotmc.org/resources/mechanics-core-api.111934/).jar Plugin and UnearthMechanic.jar\
Full Wiki [here](/mechanics/unearthmechanic.md)

## ItemsAdder

Install [DirectionalBlocks](https://www.spigotmc.org/resources/directionalblock-itemsadder-addon.104485/) Addon

Open `product.zip` and go to “`ItemsAdder Content`”, drag and drop it to your plugins folder and it will be there.

## Nexo

Open `product.zip` and go to “`Nexo Content`”, drag it to your plugins folder, then go to Nexo `settings.yml` and put in **false** `Pack.validate.models`

```yaml
Pack:
  validate:
    models: false
    atlas: false
```

If you have more than one Painter pack, the zip file contains folders named `atlas for original pack & tuff & copper & quartz` You should replace your `blocks.json` file located in `assets/minecraft/atlases`, since Nexo doesn't have a very useful atlas merge feature.

## Oraxen

Open `product.zip` and go to “`Oraxen Content`”, drag it to your plugins folder, then go to `Oraxen/settings.yml` and put in **false** `Pack.atlas.generate`

```yaml
Pack:
  generation:
    atlas:
      exclude_malformed_from_atlas: false
      generate: false
```

{% hint style="info" %}
The Plugin still does not accept “paletted\_permutations” so it will show a warning in the console that the textures do not exist, but other than that they will work correctly.
{% endhint %}

### All my textures stopped working

What i can do, this is because `Oraxen` normally takes care of generating the atlases for your custom paths, in this case you need to manually add them to your package, each of the folders that are in `textures/` and `models/` this way to the `assets/minecraft/atlases/blocks.json`

for example

```yaml
📁assets
  └── 📁painter
       ├── 📁textures
       │     └── 📁entities
       │     └── 📁block
       └── 📁models
             └── 📁cosmetics
```

```json
        {
            "type": "directory",
            "source": "entities",
            "prefix": "entities/"
        },
        {
            "type": "directory",
            "source": "block",
            "prefix": "block/"
        },
        {
            "type": "directory",
            "source": "cosmetics",
            "prefix": "cosmetics/"
        },
```

## How do I delete content?

{% hint style="info" %}
Example with Nether bricks
{% endhint %}

To delete content you must go to

<pre><code><strong>📁assets
</strong>  └── 📁minecraft
       └── 📁atlases
            └── 📑blocks.json
</code></pre>

and for example remove "`nether bricks`" from there following the json format, to verify that you have done it right use [jsonlint.com](https://jsonlint.com/), then go to

```
📁assets
  └── 📁painter
       └── 📁textures
            └── 📁block
                 └── 📁color_palettes
```

And there remove the pallets from the block you do not want, for example with `nether bricks` would be to remove

```
📁assets
  └── 📁painter
       └── 📁textures
            └── 📁block
                 └── 📁color_palettes
                      ├── 📑nether_bricks_black.png
                      ├── 📑nether_bricks_blue.png
                      ├── 📑nether_bricks_brown.png
                      ├── 📑nether_bricks_cyan.png
                      ├── 📑nether_bricks_gray.png
                      ├── 📑nether_bricks_green.png
                      ├── 📑nether_bricks_light_blue.png
                      ├── 📑nether_bricks_light_gray.png
                      ├── 📑nether_bricks_lime.png
                      ├── 📑nether_bricks_magenta.png
                      ├── 📑nether_bricks_orange.png
                      ├── 📑nether_bricks_palette.png
                      ├── 📑nether_bricks_pink.png
                      ├── 📑nether_bricks_purple.png
                      ├── 📑nether_bricks_red.png
                      ├── 📑nether_bricks_white.png
                      └── 📑nether_bricks_yellow.png
```

And once you remove that, you can go to either `ItemsAdder` or `Oraxen` and remove their configuration files from your, And as a last step go to `UnearthMechanic` and remove traces of Nether Bricks from your configurations :)<br>


---

# 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://plugins.elitefantasy.net/painter-addon/install-guide.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.
