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 Minecraft modding (Java Edition)

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

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

 

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

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

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.

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”.

Joined Mar 2016
Points:

User statistics:

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

thanks