Is there a way to make a custom build to spawn an entity? Like how you have to build a T and put a jack o’ lantern on it to spawn an iron golem. I'm trying to make an entity that does this: https://imgur.com/a/dcD1huR I've recently tried to get back into making entities and stuff, but I have forgotten a lot xD. Any info or tips would be appreciated!
#Custom Iron Golem Spawning
1 messages · Page 1 of 1 (latest)
Using scripting yes 🙂 you can detect block placement
Aw man, i dont know how to do that xD. Thanks for the tip anyway, I might try and figure it out though!
Can use block placements and query to detect block tags from neighbors. If all the blocks are there, then run a command event to summon the entity and replace the set blocks with air. No scripting required this way
What if it's vanilla blocks?
This is true, I suppose you would have to use at least one custom block for this method that you can code tag detection in. The rest can be vanilla blocks using execute command. Didn't think about it being all vanilla. In that case would need scripting @heavy heath
That's why Scripting is the catch all case 😄