GUI on block with redstone connection?

Started by PonyVicE on

Topic category: Help with Minecraft modding (Java Edition)

Active 1 year ago
Joined Jan 2020
Points:
644

User statistics:

  • Modifications: 0
  • Forum topics: 3
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 3
GUI on block with redstone connection?

How to make GUI on block that will open when block has redstone connection?

I tried to create procedure, but I do not know how to check for a redstone connection at a block. I tried to do it through if / do "get for indirect power of block", but this does not work...

Active 5 months ago
Joined Apr 2014
Points:
1223

User statistics:

  • Modifications: 2
  • Forum topics: 27
  • Wiki pages: 1
  • MCreator plugins: 0
  • Comments: 656
on trigger Redstone ON set…
Thu, 01/30/2020 - 00:23

on trigger Redstone ON set NBT tag "tagname" to true and on Redstone OFF set it to false
than on right click

If NBT tag = True {
   Open Custom GUI
}