# MMOItems

Download **MMOItems** [here](https://www.spigotmc.org/resources/mmoitems-premium.39267/)

### Here you can download the example package shown in this tutorial

{% embed url="<https://www.spigotmc.org/resources/items-mmoitem-example-integration.88351/>" %}

## Known limitations

{% embed url="<https://github.com/PluginBugs/Issues-ItemsAdder/issues/2008>" %}

## Connect an MMOItem to an ItemsAdder item

### Use the command /mmoitems browse

![](/files/-MS3E1xyRXt8UdH39HaD)

### Create a new MMOItem

![](/files/-MS3E3kejbtKDFUD26n8)

![](/files/-MS3EXxDf3F67nby96Au)

### Add all the attributes you want, for example magic damage etc

![](/files/-MS3EBnkC28fo1CcUBTn)

### MMOItem preview inside /mmoitems browse

![](/files/-MS3EfPt-B2UjJvwHZUd)

### Create your .yml file as usual and add all the properties for the ItemsAdder item

`ItemsAdder/contents/mmoitems_example/configs/example.yml`

{% hint style="success" %}
As you can see I set a new attribute called **`mmoitem`** and also **`type`** and **`id`**.\
These are used to **connect** the **two items**.
{% endhint %}

```yaml
info:
  namespace: mmoitems_example
items:
  test:
    display_name: ""
    permission: example_item
    mmoitem:
      type: SWORD
      id: TEST
    resource:
      material: DIAMOND_SWORD
      generate: true
      textures:
      - item/test.png
    durability:
      max_custom_durability: 1324
```

### Create your .png texture as usual

`ItemsAdder/contents/mmoitems_example/resourcepack/mmoitems_example/textures/item/test.png`

### Get the item

Use the command `/iaget mmoitems_example:test` to get your finished item

![](/files/-MS3Fy54dgNaN4eXJVGG)

![](/files/-MS3G-wuh4kJS_SsEpRh)


---

# 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://itemsadder.devs.beer/compatibility-with-other-plugins/compatible/mmoitems.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.
