forge mod help

Started by MinerMikeOne on

Topic category: Help with modding (Java Edition)

Last seen on 16:01, 30. Oct 2021
Joined Oct 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
forge mod help

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

Last seen on 04:28, 26. Jan 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
it is really easy, I…
Mon, 10/04/2021 - 20:20

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

 

Last seen on 10:05, 19. Apr 2024
Joined Mar 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
If get block at x y-1 z =…
Mon, 10/04/2021 - 20:20

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

Last seen on 04:28, 26. Jan 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
frost walker's ice is ticked…
Mon, 10/04/2021 - 20:52

frost walker's ice is ticked randomly, so...