Started by
Aizark
on
Topic category: Help with Minecraft modding (Java Edition)
Hello. How can I make a visual display of the progress of crafting in the mechanism?
I have enough opportunities to draw graphics. Where in MCreator there is a tool for changing images in the GUI through events. I may have 1000 conditions, but I have not found a single action for working with graphics in events.
I would also like to know this!
Currently it's not possible as long as I know
You have to use random tick to add a time process but you can't have visual effect
No random tick is executed at random possibility so it can occur when item is placed or 3 years after you placed item in slot
Better option is to make variable that will be added on block tick update and procedure will be checking if item is in slot than add 1 to variable but if item is removed during the process than set variable to 0
If use a local variable in procedure every ticks, then the variable is saved? And will each block have its own?