Docs
Requirements
- Minetest >=0.4.3 Inventory Plus >=1.0.0
Installation
Download and uncompress the
latest version, and move the the
minetest-bags-master folder into your
minetest/mods folder.
Crafting Guide
Crafting Guide
The material used below are:
S=default:stickW=default:wood1=bag:small2=bag:medium-=empty
8-slot bag
-S- WWW WWW
16-slot bag
-S- 111 111
24-slot bag
-S- 222 222
Modding Guide
To turn your craftitem into a bag simply add
bagslots=X to the groups in the node definition.
minetest.register_node("your_mod:your_item", {
description = "Your Item",
groups = {bagslots=16},
})


