Started by
JonahMCMaster05
on
Topic category: Advanced modding
I want to be able to create a mob like a chicken that drops random spawn eggs like the Eversource from Minecraft: Story Mode at certain intervals. I don't know how to create a custom procedure that drops a gem at tick intervals. Can someone explain how to?
You can use update tick event for your mob and set an entity NBT tag which counts +1 each time the procedure it's executed. Then if the NBT tag reaches a certain number of your preference, reset it to 0 and spawn the item. Just that