Skip to content
SuperRonanCraft edited this page Dec 4, 2017 · 25 revisions

This page will teach you how to create an Item in the Menu!

Items:
  <UNIQUEID>:
    Slot: 1
    Frame-Delay: 20
    Frames:
      <UNIQUEID>
        <See the Frames page for more info>

Summary


Slot

Required? Type Supports Placeholders? Default
No Int/Node Yes (Numerical) '{first-empty}'

Set the slot, in which the item should be placed.
You can make a list of values, to fill multiple slots. All slots can be overriden, as the last item in the file will take over an already filled slot!

Available Nodes:

  • Integer: Any positive number within the total amount of slots (starting from 0)
  • Placeholders: Any placeholder that returns a numerical string!
  • {fill}: Fills up every empty slot in the inventory
  • {first-empty}: The first empty slot as the inventory is filled up chronologicaly
  • {random}: A random slot, ignoring current items
  • {random_<from>_<to>}: A random slot within <from> and <to> (ex: {random_10_18})

Important! Use ' ' (Single quotes) when using these nodes! Example:

# Single slot
Slot: '{first-empty}'

# Multiple slots
Slot:
- '{first-empty}'
- '{random}'
- '21'

Frame-Delay

Required? Type Supports Placeholders? Default
No Integer No 20

The amount of ticks to change frames.


Frames

Required? Type
Yes (Atleast one) Key List

Go to the Frames page for more information!

Clone this wiki locally