i need help makeing a custem portal

Started by Robertm5402 on

Topic category: Help with modding (Java Edition)

Last seen on 23:31, 20. Nov 2023
Joined Sep 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
i need help makeing a custem portal

I need some help I was wondering if anyone knew how to create a portal similar to the one to the mining dimension in all the mod 8 where it is a single block and when you right-click it it will teleport you to your set dimension

Last seen on 05:10, 3. Dec 2023
Joined Jun 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Hello! This is that fully…
Fri, 09/29/2023 - 16:51

Hello! This is that fully one of the simpler portals to create.

Two different ways to do this - the first is if this is a custom block. On the trigger "block right clicked" create a procedure with your conditions, ex. If player holding item. Then there is a clock set dimension of player to "dimension ID".

 

The other way would be if you are using an in game block. Create a new procedure element with the global trigger "a block is right clicked" and then you would do the same as above, create your conditions, and then change dimension.

Last seen on 23:31, 20. Nov 2023
Joined Sep 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
what if i wanted to make it…
Tue, 10/03/2023 - 00:44

what if i wanted to make it so it has to be placed in the end or in the nether

Last seen on 05:10, 3. Dec 2023
Joined Jun 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You can do that in the block…
Tue, 10/03/2023 - 03:47

You can do that in the block placement conditions. If I'd of world = end or nether return true, else return false.