// priority: 0
console.log('hello from outside')
REIEvents.hide('item', event => {
console.log('hello from inside')
//test stuff here
})```The above code produces the following output in logs/kubejs/client.txt:
[14:07:21] [INFO ] client_scripts:script.js:2: hello from outside
[14:07:21] [INFO ] Loaded script client_scripts:script.js in 0.002 s
[14:07:21] [INFO ] Loaded 1/1 KubeJS client scripts in 0.006 s
```js
REIEvents.hide('item', event => {
event.hide('example:ingredient')
})```