How do I make a chest and/or a computer-like thing that has storage and commands?

Started by Tony_PolarGaming on

Topic category: Help with MCreator software

Last seen on 01:14, 1. Feb 2017
Joined Nov 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How do I make a chest and/or a computer-like thing that has storage and commands?

Hi :D

So, How do I make a chest and/or a computer-like thing that has storage and commands?

With a GUI thanks

Thx in advance, Tony_PolarGaming.

https://www.youtube.com/channel/UCD3D2tIaTT2T6e06FZWBhsw

Last seen on 17:49, 25. Mar 2021
Joined Jun 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Make a block and toggle the
Sun, 11/13/2016 - 06:50
  • Make a block and toggle the option "has inventory".
  • Make a GUI. 
  • Add inventory taken from block (and choose that block).
  • Add all GUI' slots. 
  • Edit the block with invetory. 
  • Add an event whrn rightclicked->open GUI. 
Last seen on 17:49, 25. Mar 2021
Joined Jun 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
The previous comment was for
Sun, 11/13/2016 - 07:12

The previous comment was for chest. For a computercraft-like thing you need to code (and also lots of code). For making a simple block that has some buttons, follow these steps:

  • make a block (without inventory if you don't want to make that the computer has also the chest feature). 
  • Make a GUI. 
  • Add a button (like music button). 
  • Add an event in that button (like play music); then add what it does (plays entity.cat.purr)
  • You can add more buttons, but also buttons that open/close GUI. So you can make multiple guis per block
  • Example for multiple GUI block:

(DefautHome: time home button -> open GUI: TimeHome)

(TimeHome: lots of buttons that change the time with the event: day button -> set time: 0; night button -> set time: 16000; etc.) 

Sorry for errors but I'm Italian

Last seen on 01:14, 1. Feb 2017
Joined Nov 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Ok thx. Also can u tell me
Wed, 11/16/2016 - 06:29

Ok thx. Also can u tell me how to make a backpack. A portable chest

Last seen on 17:49, 25. Mar 2021
Joined Jun 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:Ok thx. Also can u tell me
Wed, 11/16/2016 - 07:14

@#3 you can't make it without coding