Building your own nodes and mods in Minetest
Interacting
One final problem with your nodes is that, as they stand, they are unbreakable. This means that, once you lay them down, you can't pick them up again or bash them until they smash. They are indestructible.
You can make nodes destructible by adding the groups
directive to the nodes table. A line that would make our reinforced steel crack and break after three or four consecutive blows with a pickax would be:
groups = {cracky = 3},
The groups
directive tells the Minetest engine how the node is destroyed [11]. Hard objects, like stone and bricks, crack, so they belong to the cracky
group. Softer objects, like dirt or sand, belong to the crumbly
group. There are a wide variety of groups that cover flammability, wetness, liquid porosity, and so on.
The value assigned to the group tells Minetest how resistant the node is. The higher the value, the harder it is to break. As it stands, the so-called "reinforced" steel is pretty weak and cracks and breaks easily. You may want to increase that 3
to something higher.
Your final mod will look like Listing 6.
Listing 6
init.lua Complete
minetest.register_node ("personal:reinforced_steel", { tiles = {"reinforced.png"}, groups = {cracky = 3}, drawtype = "nodebox", node_box = { type = "fixed", fixed = {{-0.5, -0.5, -0.5, 0.5, -0.3, 0.5}}, } }) minetest.register_node ("personal:safe", { tiles = { "reinforced.png", "reinforced.png", "reinforced.png", "reinforced.png", "reinforced.png", "reinforced.png^safe_front.png" } }) minetest.register_craft ({ output = "personal:safe", recipe = { {"personal:reinforced_steel", "personal:reinforced_steel", "personal:reinforced_steel"}, {"personal:reinforced_steel", "", "personal:reinforced_steel"}, {"personal:reinforced_steel", "personal:reinforced_steel", "personal:reinforced_steel"} } })
Conclusion
This article has only just scratched the surface of mod making for Minetest. You can interact with your nodes in many other ways. You have a whole slew of events you can trigger when you punch, dig, use, or right-click an object in your world. You could, for example, make your safe very, very resistant to digging, but, when right-clicked, it will ask players for a combination that will allow them to open the safe.
Minetest's possibilities are pretty much endless, and the modding community is thriving. Players and developers from all over the world are creating mods that help turn Minetest worlds into role playing games, educational environments, places where visitors can express their creativity, and so much more.
Minetest is a cracking good game in its own right, and its mod system offers a whole new level of control and flexibility that you won't find in the alternatives.
Infos
- Minetest: https://www.minetest.net/
- "Minetest" by Mike Saunders, Linux Magazine, issue 204, November 2017, pg. 70: http://www.linux-magazine.com/Issues/2017/204/Minetest
- Customize Minetest with mods: https://www.minetest.net/customize/
- Creatures, including zombies and ghosts: https://github.com/BlockMen/cme
- More creepy creatures: https://wiki.minetest.net/Mods/Not_So_Simple_Mobs
- Lua programming language: https://www.lua.org/
- Register a node: http://dev.minetest.net/minetest.register_node
- Node textures: http://dev.minetest.net/texture
- Node boxes: http://dev.minetest.net/Node_boxes
- Node Box Editor: https://rubenwardy.com/NodeBoxEditor/
- Node groups: http://dev.minetest.net/Groups/Custom_groups
« Previous 1 2
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.