Procedures don't want trigger

Started by Papabile on

Topic category: Help with Minecraft modding (Java Edition)

Active 3 years ago
Joined Dec 2021
Points:
495

User statistics:

  • Modifications: 0
  • Forum topics: 1
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 0
Procedures don't want trigger
Wed, 12/15/2021 - 13:51 (edited)

I tried to make something like a sieve. You have 2 slots, one input (number 0) and one output (number 1) and when you put 1 gravel to input slot after 5 second it will consume 1 gravel and give you 1 diamond at output. I make 2 procedures. First:

The link

And it should consume gravel and give diamond. And in block "Triggers" I set that this procedure should start when "Redstone off". So if I am understand, this procedure should start if "tagName"=0 and redstone don't connect with my sieve. Then I do the next procedure:

The link

And in block "Triggers" I set that this procedure should start when "Update tick". So if I am good understand, this procedure should start every block tick. So I set in "advance block properties" Tick rate=100 and in "Block entity" I turn on "Enable block entity for this block". 

But when I start the game, I open my sieve GUI, put gravel in slot 0 and nothing happens. U tried everything but nothing work.

Edited by Papabile on Wed, 12/15/2021 - 13:51
Active 2 years ago
Joined Aug 2021
Points:
579

User statistics:

  • Modifications: 0
  • Forum topics: 8
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 20
setting the tick speed to…
Wed, 06/29/2022 - 09:56

setting the tick speed to 100 would slow the tick rate down, as it means it ticks one time every 100 world ticks, so update tick would be triggered every 5 seconds. Mybe it wworks if you set the tick rate to 1, which would mean the block ticks 20 times a sceond as there are twenty world ticks per second. 

i can't open the links, but maybe there is also something wrong in your procedures.