Mining Helmet

Started by tonimo112 on

Topic category: Help with Minecraft modding (Java Edition)

Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Mining Helmet

So I wanna make a mining helmet that basically lights up the area around you instead of giving you night vision. But I'm not sure how to make it and I've been looking around for a while.

Joined Mar 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
thats not possible
Wed, 09/25/2019 - 12:26

thats not possible

Joined Jan 2017
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Unless you wanna do some…
Wed, 09/25/2019 - 14:07

Unless you wanna do some custom code (Id be happy to help)

This is not a feature in MCreator.

Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Ah ok thanks
Wed, 09/25/2019 - 14:21

Ah ok thanks

Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
So night vision effect on my…
Wed, 09/25/2019 - 14:21

So night vision effect on my helm is the only way to do this?

Joined Aug 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Make a custom block that…
Wed, 09/25/2019 - 14:38

Make a custom block that functions as air, but produces light, which has a procedure on tick update to place air over it.
Make a procedure for the helmet to place this at your location.

Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Thanks for the help, but I…
Wed, 09/25/2019 - 14:47

Thanks for the help, but I barely know how to do that. I can't even figure out how to make the block a light source.

 

Joined Aug 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
The Luminance option…
Wed, 09/25/2019 - 14:49

The Luminance option modifies the light level of the block.

Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Yeah I got that, but I'm…
Wed, 09/25/2019 - 14:52

Yeah I got that, but I'm confused about the tick things. Is there like a youtube video that explains that?

Joined Aug 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Probably. 20 ticks = 1…
Wed, 09/25/2019 - 15:00

Probably.
20 ticks = 1 second, and you can set the tick speed of a block. If you set the tick speed of a block to 100, it would do a procedure in on tick update every 5 seconds.

Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
No I know what a tick is, I…
Wed, 09/25/2019 - 15:05

No I know what a tick is, I mean't like messing with the procedures and that stuff. Sorry I'm new to modding.

Joined Aug 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You'll get used to it…
Wed, 09/25/2019 - 15:48

You'll get used to it eventually.

Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I'm kinda starting to figure…
Wed, 09/25/2019 - 20:34

I'm kinda starting to figure it out, but for example I can't figure out how to do like

"if player equips "mining helmet" add potion effect: night vision, if player removes "mining helmet" remove potion effect: night vision"

Joined Aug 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Make a procedure for on…
Thu, 09/26/2019 - 07:20

Make a procedure for on Helmet tick event, and make this.