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
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.
-
VirtualBox 7.1.4 Includes Initial Support for Linux kernel 6.12
The latest version of VirtualBox has arrived and it not only adds initial support for kernel 6.12 but another feature that will make using the virtual machine tool much easier.
-
New Slimbook EVO with Raw AMD Ryzen Power
If you're looking for serious power in a 14" ultrabook that is powered by Linux, Slimbook has just the thing for you.
-
The Gnome Foundation Struggling to Stay Afloat
The foundation behind the Gnome desktop environment is having to go through some serious belt-tightening due to continued financial problems.
-
Thousands of Linux Servers Infected with Stealth Malware Since 2021
Perfctl is capable of remaining undetected, which makes it dangerous and hard to mitigate.