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)

Active 2 years ago
Joined Mar 2016
Points:
881

User statistics:

  • Modifications: 1
  • Forum topics: 29
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 40
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

Active 1 year ago
Joined Jun 2020
Points:
629

User statistics:

  • Modifications: 0
  • Forum topics: 4
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 11
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

 

Active 2 years ago
Joined Mar 2016
Points:
881

User statistics:

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

hello how do i make it generate a block

Active 2 years ago
Joined Mar 2016
Points:
881

User statistics:

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

hello how do i make it generate a block

Active 3 years ago
Joined Mar 2020
Points:
1262

User statistics:

  • Modifications: 2
  • Forum topics: 10
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 1149
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.

Active 4 years ago
Joined Jun 2020
Points:
635

User statistics:

  • Modifications: 0
  • Forum topics: 1
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 58
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”.

Active 2 years ago
Joined Mar 2016
Points:
881

User statistics:

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

thanks