Started by
davidS
on
Topic category: Help with Minecraft modding (Java Edition)
Hello, I want to make a mob generate an egg block from time to time, please send images of the procedure
Topic category: Help with Minecraft modding (Java Edition)
Hello, I want to make a mob generate an egg block from time to time, please send images of the procedure
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
hello how do i make it generate a block
hello how do i make it generate a block
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.
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”.
thanks