Variable: locate - ScreamingSandals/SimpleInventories GitHub Wiki
locate
This variable can send you on click to category with another id or to main.
Yaml:
- write: false
id: test
items:
- DIRT
- STONE
- locate: '$test'
stack: 'SPONGE'
Groovy:
hidden('test') {
item('DIRT')
item('STONE')
}
item('SPONGE') {
locate '$test'
}