-
-
Notifications
You must be signed in to change notification settings - Fork 81
Creating an aircraft
This applies to any craft that flies (e.g. Airship, Airskiff, BigAirship). How to know if the craft flies? Navigate to your plugins/Movecraft/types folder and open up the .craft files and find if they contain the tag canFly: true
. At the moment of writing this guide, the version used was Movecraft 8.0.0 Beta 4 on Minecraft 1.21.
To quickly set up a craft with the default settings, you would need to fulfill the craft requirements. Airskiff has the following default requirements:
- 50% of the craft must be wool, as wool represents lift.
- 8% of the creaft must be redstone blocks, as it represents engines.
- Minimum craft size needs to be 10 blocks and maximum 80.
- Furnace for fuel (Coal or other items that are considered fuel).
- A stick in hand to pilot the craft, or using the optional control signs below.
To modify or create your own requirements, modify the plugins/Movecraft/types/Airskiff.craft
file and see craft file flags for more information.
-
Create a craft foundation: Airskiff foundation example
-
Create the pilot and release control signs: Pilot and release signs
-
Add fuel into Furnace: Add fuel
-
Right click the Craft (Airskiff) sign to pilot the craft: Pilot the craft message.
-
Use stick in hand and right click at the desired move direction to move the craft.
-
Release the craft by right-clicking the
Release
sign: Release craft message.
Control signs (see Control Signs for more information)
NOTE: DO NOT RIGHT CLICK THE SIGNS WITH STICK IN HAND.
Imagine this empty field to represent a sign block in Minecraft:
----------------
| LINE 1 |
| LINE 2 |
| LINE 3 |
| LINE 4 |
----------------
Once the requirements are fulfilled, you may add in the following SIGN BLOCKS for life improvements (right-clicking on signs) and not requiring to constantly type commands to pilot the craft.
- CRAFT-Type sign: The first line of this sign should contain the name of the craft. In this example, we will use "Airskiff". A sign usually has 4 lines and should be structured as follows:
---------------------
| Airskiff |
| |
| [Your craft name] |
| [Your name] |
---------------------
The first line HAS TO BE the name of the craft. Anything else below are optional.
- Release sign: Releasing the craft after you are done with it.
-------------------
| Release |
| |
| |
| |
-------------------
- Helm: to rotate the craft.
-------------------
| [Helm] |
| |
| |
| |
-------------------
- Ascend/Descend:
-------------------
| Ascend: OFF |
| |
| |
| |
-------------------
or
-------------------
| Descend: OFF |
| |
| |
| |
-------------------