| Name | item moves from inventory to inventory |
| Event Lines | <item> moves from <inventory> (to <inventory>) |
| Triggers | when an entity or block moves an item from one inventory to another. (Hopper-style movement, not player-induced movement). |
| Generated Examples | on item moves from inventory:
after pufferfish moves from inventory: |
| Contexts | <context.origin> returns the origin InventoryTag.
<context.destination> returns the destination InventoryTag.
<context.initiator> returns the InventoryTag that initiated the item's transfer.
<context.item> returns the ItemTag that was moved.
|
| Determine | ItemTag to set a different item to be moved. |
| Cancellable | True - This adds <context.cancelled> and determine 'cancelled' or 'cancelled:false' |
| Has Location | True - This adds the switches 'in:<area>', 'location_flagged:<flag>', ... |
| Group | Item |
| Source | https://github.com/DenizenScript/Denizen/blob/dev/plugin/src/main/java/com/denizenscript/denizen/events/item/ItemMoveScriptEvent.java#L13 |