how do i make vanilla blocks turn into custom blocks on tick (procedure)

Started by bananarang_mods on

Topic category: Help with modding (Java Edition)

Last seen on 13:59, 19. May 2023
Joined Jul 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
how do i make vanilla blocks turn into custom blocks on tick (procedure)

i want to make stages of all leaves (including vanilla ones), but idk how to make a vanilla block turn into custom block pls help

Last seen on 02:48, 21. Oct 2020
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How it is not possible…
Tue, 10/20/2020 - 01:02

How it is not possible Klemen?? Just say On tick if block is that block than replace it with this block; roll random number if number is equal.
Mostly use flow logic math stuff in find replace block get block set block remove block stuff. I didnt try it.

Last seen on 10:54, 17. Apr 2021
Joined Jan 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
yuno44907 you can't use on…
Thu, 11/12/2020 - 20:36

yuno44907 you can't use on tick procedure for vanilla blocks

Last seen on 10:54, 17. Apr 2021
Joined Jan 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
banarang_mods I am pretty…
Thu, 11/12/2020 - 21:20

banarang_mods I am pretty sure it's impossible, but I'm a pretty bad modder with a lot of things. I think you can change a custom block into a vanilla one, and a custom one into a different custom one, but I don't think editing vanilla blocks' code is really possible without "brute force" modding as I like to call it - straight up going into Minecraft's files and messing around.

Last seen on 13:59, 19. May 2023
Joined Jul 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
meh im not doing it anymore
Fri, 11/13/2020 - 04:16

meh im not doing it anymore

Last seen on 13:59, 19. May 2023
Joined Jul 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
too realistic.. also who…
Fri, 11/13/2020 - 04:29

too realistic.. also who would want their trees to die and not make fruit anymore in mc?

Last seen on 14:55, 14. Sep 2022
Joined Jan 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
@Rednax he's not talking…
Tue, 09/13/2022 - 01:29

@Rednax he's not talking about that, he's just talking about the default tick procedure

Last seen on 17:48, 20. Jan 2024
Joined Mar 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
It is possible, and actually…
Fri, 06/16/2023 - 08:11

It is possible, and actually very simple. You can make a procedure that has a global "On World Tick Update" trigger. In there, you use an if block to test for if the block at the current position is a vanilla block. Then, inside, you execute whatever you want.

Last seen on 17:48, 20. Jan 2024
Joined Mar 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Update: It is not possible…
Fri, 06/16/2023 - 08:14

Update: It is not possible with that method. What exactly do you want it for?

Last seen on 17:28, 23. Mar 2024
Joined May 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I was doing something…
Fri, 03/22/2024 - 02:09

I was doing something totally different from what this was asking, lol. It is really easy, all you have to do is check on global trigger "On block placed", then wait a few ticks on sever side (usually 3 ticks) then place block on the position. If you want it to not immediately replace the block, you can either add more time to the wait a few ticks on sever side, or set the position of that block into 3 different number variables, then set a logic global variable to true, then on another procedure on "On world active tick" check if that logic variable is true, then add to another number variable for counting ticks, then after it counted to the amount you want, then replace block at your saved location variables until it's the custom block. This will only work on 1 block at a time, but it'll work. If you want other was of achieving this, I have a million other ways, but they really only work on one block at a time.