Started by
nilek20
on
Topic category: Help with Minecraft modding (Java Edition)
In my mod i am creating a block with a GUI. this blocks purpose i to take an input and convert it into a different output. im using a procedure that trigger on Block Tick that will...
1. check for a Logic Variable as False/check for correct item in input slot/check for no items in output slot
if the above is true then
2. set that variable to True
3. wait 20 seconds
4. remove 1 item from the blocks input slot and place 1 item in the output slot
5. set the Variable as False
I have no problems with the Procedures.
My question is what Global Variable Scope should i use for the block.
I understand that you want to add a global variable to a block.
MCreator global variables doesn't support blocks unfortunately. You can use NBT tags as they should be synced between client and server for blocks and items.