Started by
MinerMikeOne
on
Topic category: Help with Minecraft modding (Java Edition)
Hello,
so I want to make a forge mod (1.16.5) that adds a new enchantment for the game (Magma Walker) it should be just like frost walker but when I walk over lava it replaces it with magma blocks and the magma blocks should disappear after a certain amount of time and I tried all different kinds of things but I can't get it to work so I would make me happy if someone could help me.
Thanks
it is really easy, I actually did this for one of my mods. make a
block with the same texture and properties like Magma, set it to tick Randomly and on Block Tick Update
remove block at X Y Z
then on Player tick update if block at X Y - 1 Z = LAVA
do replace block at X Y - 1 Z with CUSTOM_MAGMA
If get block at x y-1 z = needed block
Then replace block with solid one
On solid one trigger when block added: wait tot seconds then remove block
frost walker's ice is ticked randomly, so...