Armor Procedures

Started by RealMazurex on

Topic category: Help with modding (Java Edition)

Last seen on 17:15, 22. Dec 2021
Joined Aug 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Armor Procedures

This topic will go over armor procedures (how to make boots do cool stuff like make players fly etc.)

You can freely ask any questions and we will gladly help you as much as we can

Last seen on 17:15, 22. Dec 2021
Joined Aug 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How to make a rocket…
Sun, 12/19/2021 - 00:05

How to make a rocket chestplate

Firstly create the actual chestplate, then we can start working on the procedure.

1. Create an if statement which makes sure that the player is sneaking (crouching), this will be the root/parent of the procedure, everything we add will be put inside of there to make sure the chestplate isn't doing anything on it's own.

2. Create another if statement which makes sure that the durability is not too low by making sure it's equal to or over 5k health, this will prevent the chest piece from breaking on accident

3. Create ANOTHER if statement that checks if there is air below the player, if there isn't, then it'll give slow falling.

That's all!