Skip to content

mmoitems support in variables #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions AdvancedPluginsWiki/actions/setting-up-and-using-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ variable: "!stone OR dirt"
`block-place`

```yml
variable:
variable:
- "!stone"
- "dirt"
# This will progress the quest if player placed any block except stone and dirt
Expand Down Expand Up @@ -137,13 +137,22 @@ In this case, root will accept every item which contains ORE in name (it also ap

### ItemsAdder (experimental)

Just add `itemsadder:` before element name to use itemsadder items, block or entities
Just add `itemsadder:` before element name to use itemsadder items, block or entities

**Example:**
```yml
variable: itemsadder:ITEM_NAME
```

### MMOItems (experimental)

Just add `mmoitems:` before element name to use items from this plugin

**Example:**
```yml
variable: mmoitems:ITEM_NAME
```

### Properties

You can add some properties in JSON format.
Expand Down Expand Up @@ -219,4 +228,4 @@ variable:
and: []
```

In this case, action will progress only when the player is op OR has level greater than 10.
In this case, action will progress only when the player is op OR has level greater than 10.