Plant growth does not seem to work

Started by BetaDv_ on

Topic category: Help with MCreator software

Joined Nov 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Plant growth does not seem to work

*I have followed a tutorial for this*
 

So I have a procedure here, that does not want to work, it's an update tick procedure, which is supposed to grow my tomato plant, everything works, the procedure seems to run because of the other things in it working, but growth. I have put the procedure below:
https://www.mediafire.com/file/cj7jv0unughfgkl/proc.ptpl/file

Some Screenshots of the procedure in case u cannot download the file:

1

2

3

Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
yeah there are better ways…
Tue, 10/19/2021 - 00:06

yeah there are better ways to do it, for example one way would be go to Advanced Properties on each stage and click Tick Randomly (except last stage) then on update tick make this procedure: (supposing you have 4 stages)

if random <= 0.6

do replace block at x y z with stage_2

else if random <= 0.4

do replace block at x y z with stage_3

else if random <= 0.2

do replace block at x y z with stage_4

for every stage put this procedure with the difference of removing the first if statement.

Joined Nov 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I have figured the problem,…
Tue, 10/19/2021 - 15:33

I have figured the problem, but not the fix. The "growthTimer" is always -1.00, but how can i fix it