hello how can I increase the tick of a mob so that they generate an egg every so often

Started by davidS on

Topic category: Help with modding (Java Edition)

Last seen on 19:39, 19. Nov 2022
Joined Mar 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
hello how can I increase the tick of a mob so that they generate an egg every so often

 Hello, I want to make a mob generate an egg block from time to time, please send images of the procedure

Last seen on 21:48, 7. Aug 2023
Joined Jun 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
i am not an expert on mob…
Tue, 06/16/2020 - 17:38

i am not an expert on mob generation but, I know that if you go to procedures on your mob you can make a tick event, that makes the mob drop eggs so often

 

Last seen on 19:39, 19. Nov 2022
Joined Mar 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
hello how do i make it…
Tue, 06/16/2020 - 17:54

hello how do i make it generate a block

Last seen on 19:39, 19. Nov 2022
Joined Mar 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
hello how do i make it…
Tue, 06/16/2020 - 18:57

hello how do i make it generate a block

Last seen on 22:41, 29. Dec 2021
Joined Mar 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You can make a mob drop an…
Tue, 06/16/2020 - 21:43

You can make a mob drop an egg by making a procedure for “on entity tick” and have a lot of random number generators, and have “summon gem: [egg] x y z” in the result of one of them.

Last seen on 16:48, 17. Dec 2020
Joined Jun 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You could make it update an…
Tue, 06/30/2020 - 14:48

You could make it update an Entity NBT tag on itself every tick, and when it reaches a particular value (the amount of time you want between eggs) it sets the NBT tag to 0 and runs "summon gem: [egg] x y z”.

Last seen on 19:39, 19. Nov 2022
Joined Mar 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
thanks
Tue, 06/30/2020 - 16:11

thanks