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
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.