Plugin Integration

How to use ItemsAdder items in FancyWaystones?

<any itemstack configuration option>:
    type: ITEMSADDER
    meta:
        id: "<your itemsadder id>"

How to use MythicMobs items in FancyWaystones?

<any itemstack configuration option>:
    type: MYTHICMOBS
    meta:
        id: "<your mythicmobs id>"

How to use Oraxen items in FancyWaystones?

<any itemstack configuration option>:
    type: ORAXEN
    meta:
        id: "<your oraxen id>"

How to use ItemsAdder custom block in Waystone Model?

component:
    - type: items-adder
      offset:
        x: 0
        y: 0
        z: 0
      data:
        '*':
          custom-block: 'your custom block id'

How to use Oraxen custom block in Waystone Model?

component:
    - type: oraxen
      offset:
        x: 0
        y: 0
        z: 0
      data:
        '*':
          item-id: 'your custom block id'

How to use ModelEngine custom entity in Waystone Model?

component:
    - type: model-engine
      offset:
        x: 0
        y: 0
        z: 0
      data:
        '*'
          entity-type: '<your entity type>'
          disable-interaction: true # or false
          active-model-id: '<the model engine active model id>'

Last updated