Started by
Timofey
on
Topic category: Help with Minecraft modding (Java Edition)
I create variable 'count' and i need to plus 1 to 'count' every second, but i cant found my variable in procedure blocks list and i cant found a block that can wait 1 second. Please explain me where it is.
Your custom variable can be found under the tab "custom variables" in the procedure editor and to add +1 every second just set up a "on world tick" trigger and put a "wait 20 ticks" block. Inside of the wait just put set [your variable] + 1 with math blocks.