screenshot

Features

  • Bags are available in inventory.
  • Multiple sized bags.
  • Bags store items permanently with the player.
screenshot+1
screenshot+2

Docs

Requirements

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:stick
  • W = default:wood
  • 1 = bag:small
  • 2 = 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},
})