2014-12-11 11:56:37 +03:00
|
|
|
|
---
|
2018-09-14 17:00:44 +03:00
|
|
|
|
title: Getting Started
|
2014-12-11 11:56:37 +03:00
|
|
|
|
layout: default
|
2018-07-15 21:36:35 +03:00
|
|
|
|
root: ../..
|
2018-07-15 17:28:10 +03:00
|
|
|
|
idx: 1.1
|
2018-09-20 21:12:18 +03:00
|
|
|
|
description: Learn how to make a mod folder, including init.lua, mod.conf and more.
|
2018-09-14 17:00:44 +03:00
|
|
|
|
redirect_from:
|
|
|
|
|
- /en/chapters/folders.html
|
|
|
|
|
- /en/basics/folders.html
|
2014-12-11 11:56:37 +03:00
|
|
|
|
---
|
|
|
|
|
|
2015-02-22 13:28:37 +03:00
|
|
|
|
## Introduction
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2018-10-05 00:33:04 +03:00
|
|
|
|
Understanding the basic structure of a mod's folder is an essential skill when
|
|
|
|
|
creating mods.
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2018-09-20 21:12:18 +03:00
|
|
|
|
* [What are Games and Mods?](#what-are-games-and-mods)
|
2019-03-25 21:04:09 +03:00
|
|
|
|
* [Where are mods stored?](#where-are-mods-stored)
|
2018-09-15 19:04:19 +03:00
|
|
|
|
* [Mod Directory](#mod-directory)
|
2017-09-03 03:48:06 +03:00
|
|
|
|
* [Dependencies](#dependencies)
|
|
|
|
|
* [Mod Packs](#mod-packs)
|
|
|
|
|
* [Example](#example)
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2018-09-20 21:12:18 +03:00
|
|
|
|
|
|
|
|
|
## What are Games and Mods?
|
|
|
|
|
|
2018-10-05 00:33:04 +03:00
|
|
|
|
The power of Minetest is the ability to easily develop games without the need
|
2018-10-27 05:10:37 +03:00
|
|
|
|
to create your own voxel graphics, voxel algorithms, or fancy networking code.
|
2018-09-20 21:12:18 +03:00
|
|
|
|
|
2018-10-05 00:33:04 +03:00
|
|
|
|
In Minetest, a game is a collection of modules which work together to provide the
|
|
|
|
|
content and behaviour of a game.
|
2018-09-20 21:12:18 +03:00
|
|
|
|
A module, commonly known as a mod, is a collection of scripts and resources.
|
2018-10-05 00:33:04 +03:00
|
|
|
|
It's possible to make a game using only one mod, but this is rarely done because it
|
|
|
|
|
reduces the ease by which parts of the game can be adjusted and replaced
|
|
|
|
|
independently of others.
|
2018-09-20 21:12:18 +03:00
|
|
|
|
|
|
|
|
|
It's also possible to distribute mods outside of a game, in which case they
|
2018-10-05 00:33:04 +03:00
|
|
|
|
are also *mods* in the more traditional sense - modifications. These mods adjust
|
|
|
|
|
or extend the features of a game.
|
|
|
|
|
|
|
|
|
|
Both the mods contained in a game and third-party mods use the same API.
|
|
|
|
|
|
|
|
|
|
This book will cover the main parts of the Minetest API,
|
2018-09-20 21:12:18 +03:00
|
|
|
|
and is applicable for both game developers and modders.
|
|
|
|
|
|
2019-03-25 21:04:09 +03:00
|
|
|
|
|
|
|
|
|
## Where are mods stored?
|
|
|
|
|
|
|
|
|
|
<a name="mod-locations"></a>
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2018-10-05 00:33:04 +03:00
|
|
|
|
Each mod has its own directory where its Lua code, textures, models, and
|
2019-03-25 21:04:09 +03:00
|
|
|
|
sounds are placed. Minetest checks in a number of different locations for
|
|
|
|
|
mods. These locations are commonly called *mod load paths*.
|
|
|
|
|
|
|
|
|
|
For a given world/save game, three mod locations are checked.
|
|
|
|
|
They are, in order:
|
|
|
|
|
|
|
|
|
|
1. Game mods. These are the mods that form the game that the world is running.
|
|
|
|
|
Eg: `minetest/games/minetest_game/mods/`, `/usr/share/minetest/games/minetest/`
|
|
|
|
|
2. Global mods, the location to which mods are nearly always installed to.
|
|
|
|
|
If in doubt, place them here.
|
|
|
|
|
Eg: `minetest/mods/`
|
|
|
|
|
3. World mods, the location to store mods which are specific to a
|
|
|
|
|
particular world.
|
|
|
|
|
Eg: `minetest/worlds/world/worldmods/`
|
|
|
|
|
|
|
|
|
|
Minetest will check the locations in the order given above. If it encounters a mod
|
|
|
|
|
with a name the same as one found previously, the later mod will be loaded in place
|
|
|
|
|
of the earlier mod.
|
|
|
|
|
This means that you can override game mods by placing a mod with the same name
|
|
|
|
|
in the global mod location.
|
|
|
|
|
|
|
|
|
|
The actual location of each mod load path depends on what operating system you're
|
|
|
|
|
using, and how you installed Minetest.
|
|
|
|
|
|
|
|
|
|
* **Windows:**
|
|
|
|
|
* For portable builds, ie: from a .zip file, just go to the directory where
|
|
|
|
|
you extracted the zip and look for the `games`, `mods`, and `worlds`
|
|
|
|
|
directories.
|
|
|
|
|
* For installed builds, ie: from a setup.exe,
|
|
|
|
|
look in C:\\\\Minetest or C:\\\\Games\\Minetest.
|
|
|
|
|
* **GNU/Linux:**
|
|
|
|
|
* For system-wide installs, look in `~/.minetest`.
|
|
|
|
|
Note that `~` means the user home directory, and that files and directories
|
|
|
|
|
starting with a dot (`.`) are hidden.
|
|
|
|
|
* For portable installs, look in the build directory.
|
|
|
|
|
* For Flatpak installs, look in `~/.var/app/net.minetest.Minetest/.minetest/mods/`.
|
|
|
|
|
* **MacOS**
|
|
|
|
|
* Look in `~/Library/Application Support/minetest/`.
|
|
|
|
|
Note that `~` means the user home, ie: `/Users/USERNAME/`.
|
|
|
|
|
|
|
|
|
|
## Mod Directory
|
2017-09-03 03:48:06 +03:00
|
|
|
|
|
2018-09-15 19:04:19 +03:00
|
|
|
|
![Find the mod's directory]({{ page.root }}/static/folder_modfolder.jpg)
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2018-10-06 18:56:42 +03:00
|
|
|
|
A *mod name* is used to refer to a mod. Each mod should have a unique name.
|
2018-09-15 19:04:19 +03:00
|
|
|
|
Mod names can include letters, numbers, and underscores. A good name should
|
|
|
|
|
describe what the mod does, and the directory which contains the components of a mod
|
2018-10-05 00:33:04 +03:00
|
|
|
|
must have the same name as the mod name.
|
2018-09-14 17:00:44 +03:00
|
|
|
|
To find out if a mod name is available, try searching for it on
|
|
|
|
|
[content.minetest.net](https://content.minetest.net).
|
2014-12-18 21:57:13 +03:00
|
|
|
|
|
2018-09-15 19:04:19 +03:00
|
|
|
|
mymod
|
2018-09-24 19:16:00 +03:00
|
|
|
|
├── init.lua (required) - Runs when the game loads.
|
|
|
|
|
├── mod.conf (recommended) - Contains description and dependencies.
|
2018-09-15 19:04:19 +03:00
|
|
|
|
├── textures (optional)
|
|
|
|
|
│ └── ... any textures or images
|
|
|
|
|
├── sounds (optional)
|
|
|
|
|
│ └── ... any sounds
|
|
|
|
|
└── ... any other files or directories
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2018-10-05 00:33:04 +03:00
|
|
|
|
Only the init.lua file is required in a mod for it to run on game load;
|
2018-09-14 17:00:44 +03:00
|
|
|
|
however, mod.conf is recommended and other components may be needed
|
2018-10-05 00:33:04 +03:00
|
|
|
|
depending on the mod's functionality.
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2019-03-25 21:04:09 +03:00
|
|
|
|
|
2015-02-22 13:28:37 +03:00
|
|
|
|
## Dependencies
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2018-10-05 00:33:04 +03:00
|
|
|
|
A dependency occurs when a mod requires another mod to be loaded before itself.
|
|
|
|
|
One mod may require another mod's code, items, or other resources to be available
|
|
|
|
|
for it to use.
|
|
|
|
|
|
2018-09-14 17:00:44 +03:00
|
|
|
|
There are two types of dependencies: hard and optional dependencies.
|
2018-10-05 00:33:04 +03:00
|
|
|
|
Both require the mod to be loaded first. If the mod being depended on isn't
|
|
|
|
|
available, a hard dependency will cause the mod to fail to load, while an optional
|
|
|
|
|
dependency might lead to fewer features being enabled.
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2018-10-05 00:33:04 +03:00
|
|
|
|
An optional dependency is useful if you want to optionally support another mod; it can
|
|
|
|
|
enable extra content if the user wishes to use both the mods at the same time.
|
2018-09-14 17:00:44 +03:00
|
|
|
|
|
|
|
|
|
Dependencies should be listed in mod.conf.
|
2018-10-05 00:33:04 +03:00
|
|
|
|
|
|
|
|
|
### mod.conf
|
|
|
|
|
|
|
|
|
|
This file is used for mod metadata including the mod's name, description, and other
|
|
|
|
|
information. For example:
|
2018-09-14 17:00:44 +03:00
|
|
|
|
|
|
|
|
|
name = mymod
|
2018-10-05 00:33:04 +03:00
|
|
|
|
description = Adds foo, bar, and bo.
|
2018-09-14 17:00:44 +03:00
|
|
|
|
depends = modone, modtwo
|
|
|
|
|
optional_depends = modthree
|
|
|
|
|
|
|
|
|
|
### depends.txt
|
|
|
|
|
|
2018-10-05 00:33:04 +03:00
|
|
|
|
For compatibility with 0.4.x versions of Minetest, instead of only specifying
|
|
|
|
|
dependencies in mod.conf, you need to provide a depends.txt file in which
|
|
|
|
|
you list all dependencies:
|
2014-12-31 19:51:24 +03:00
|
|
|
|
|
2017-08-26 21:01:51 +03:00
|
|
|
|
modone
|
|
|
|
|
modtwo
|
|
|
|
|
modthree?
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2018-10-05 00:33:04 +03:00
|
|
|
|
Each mod name is on its own line, and mod names with a question mark
|
|
|
|
|
following them are optional dependencies.
|
2017-09-03 03:48:06 +03:00
|
|
|
|
If an optional dependency is installed, it is loaded before the mod;
|
|
|
|
|
however, if the dependency is not installed, the mod still loads.
|
2015-11-08 18:57:40 +03:00
|
|
|
|
This is in contrast to normal dependencies which will cause the current
|
2015-02-24 12:27:49 +03:00
|
|
|
|
mod not to work if the dependency is not installed.
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2015-02-22 13:28:37 +03:00
|
|
|
|
## Mod Packs
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2017-09-03 03:48:06 +03:00
|
|
|
|
Mods can be grouped into mod packs which allow multiple mods to be packaged
|
|
|
|
|
and moved together. They are useful if you want to supply multiple mods to
|
2018-10-05 00:33:04 +03:00
|
|
|
|
a player, but don't want to make them download each one individually.
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2018-09-15 19:04:19 +03:00
|
|
|
|
modpack1
|
2018-09-24 19:16:00 +03:00
|
|
|
|
├── modpack.lua (required) - signals that this is a mod pack
|
2018-09-15 19:04:19 +03:00
|
|
|
|
├── mod1
|
|
|
|
|
│ └── ... mod files
|
|
|
|
|
└── mymod (optional)
|
|
|
|
|
└── ... mod files
|
|
|
|
|
|
2018-10-05 00:33:04 +03:00
|
|
|
|
Please note that a modpack is not a *game*.
|
|
|
|
|
Games have their own organisational structure which will be explained in the
|
|
|
|
|
Games chapter.
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2017-09-03 03:48:06 +03:00
|
|
|
|
## Example
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2018-10-05 00:33:04 +03:00
|
|
|
|
Here is an example which puts all of this together:
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
|
|
|
|
### Mod Folder
|
2018-09-15 19:04:19 +03:00
|
|
|
|
mymod
|
|
|
|
|
├── textures
|
|
|
|
|
│ └── mymod_node.png files
|
|
|
|
|
├── depends.txt
|
|
|
|
|
├── init.lua
|
|
|
|
|
└── mod.conf
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
|
|
|
|
### depends.txt
|
2017-08-26 21:01:51 +03:00
|
|
|
|
default
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
|
|
|
|
### init.lua
|
2018-09-19 14:04:51 +03:00
|
|
|
|
```lua
|
2014-12-11 22:49:41 +03:00
|
|
|
|
print("This file will be run at load time!")
|
|
|
|
|
|
2015-02-19 17:55:37 +03:00
|
|
|
|
minetest.register_node("mymod:node", {
|
2017-08-26 21:01:51 +03:00
|
|
|
|
description = "This is a node",
|
2018-10-05 00:33:04 +03:00
|
|
|
|
tiles = {"mymod_node.png"},
|
2017-08-26 21:01:51 +03:00
|
|
|
|
groups = {cracky = 1}
|
2014-12-11 22:49:41 +03:00
|
|
|
|
})
|
2018-09-19 14:04:51 +03:00
|
|
|
|
```
|
2014-12-11 11:56:37 +03:00
|
|
|
|
|
2018-09-14 17:00:44 +03:00
|
|
|
|
### mod.conf
|
|
|
|
|
name = mymod
|
|
|
|
|
descriptions = Adds a node
|
|
|
|
|
depends = default
|
|
|
|
|
|
|
|
|
|
This mod has the name "mymod". It has three text files: init.lua, mod.conf,
|
|
|
|
|
and depends.txt.\\
|
|
|
|
|
The script prints a message and then registers a node –
|
|
|
|
|
which will be explained in the next chapter.\\
|
|
|
|
|
There's a single dependency, the
|
2018-10-05 00:33:04 +03:00
|
|
|
|
[default mod](https://content.minetest.net/metapackages/default/), which is
|
2018-09-14 17:00:44 +03:00
|
|
|
|
usually found in Minetest Game.\\
|
2015-02-24 12:30:05 +03:00
|
|
|
|
There is also a texture in textures/ for the node.
|