Count variable

Started by Timofey on

Topic category: Help with Minecraft modding (Java Edition)

Joined Mar 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Count variable

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.

Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Your custom variable can be…
Wed, 03/12/2025 - 22:07

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.