#Dummy Sources

1 messages · Page 1 of 1 (latest)

teal pendant
#

I am trying to make an item show in the menu without it giving experience. My goals to add all the mythic mobs I have to the source menu but make it so when you kill the mob, it gives the xp via a skill (as shown on wiki)

  type: entity
  entity: '{key}'
  trigger: death
  damager: player
  menu_item:
    material: '{key}_spawn_egg'
sources:
  dummy_source:
    type: item_consume
    item:
      material: glass
    display_name: Dummy Source
  bat:
    xp: 1.0
    display_name: '&f&lBat'```
exotic owl
#

You need a non-zero xp value and your display_name needs to be in a menu_item section. You can also collapse the material for the source item into just a value for item

sources:
  dummy:
    type: item_consume
    item: glass
    xp: 1
    menu_item:
      material: # item displayed in menu
      display_name: Dummy Source
teal pendant
#

Sweet thanks

#

So when I do mm skills to give xp, does it recognize multiplier?

exotic owl
#

it should, try and see