Difference between revisions of "Mods"

From Minetest Wiki
Jump to navigation Jump to search
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Languages}}
+
{{Languages|nocat=1}}
 +
 
 +
[[File:Mesecons example.jpg|thumb|An example of the mod [https://content.minetest.net/packages/Jeija/mesecons/ Mesecons].]]
 +
'''Mods''' (short for '''modifications''' or '''modules''') are user-created modifications to a game in such a way that adds to or alters the gameplay. Some larger mods may add a lot of content to the game, while other smaller mods may add more settings/customization options or tweak the gameplay in small ways. [[Server]] mods or plugins mainly give server admins more options and ease of use, and all mods for singleplayer can also be used in multiplayer.
 +
 
 +
While Minetest mods are generally safe to install as they run by default in a sandboxed environment, one should exercise caution with mods as they may modify your world data in an undesired way. A good way to protect your game from such problems is to regularily [[Backup Solutions|back up]] your world folder(s) when installing new mods.
 +
 
 +
To browse the selection of mods available for Minetest games see [https://content.minetest.net/packages/?type=mod ContentDB].
  
 
__TOC__
 
__TOC__
 
== Mods ==
 
[[File:Mesecons example.jpg|thumb|An example of the mod [[Mods/Mesecons|Mesecons]].]]
 
'''Mods''' (short for '''modifications''' or '''modules''') are user-created modifications to the game in such a way that adds to or alters the gameplay. Some larger mods may add a lot of content to the game, while other smaller mods may add more settings/customization options, or optimize the speed, gameplay, or graphics of Minetest. [[Server]] mods or plugins mainly give server admins more options and ease of use, and all mods for single-player can also be used in multiplayer. While Minetest mods are generally safe to install, one should exercise caution with mods to prevent crashes, system instability, deletion of game/save data, or potential malware infections from a bad link or the mod itself. A good way to protect your game from such problems is to back up your Minetest folder if you choose to use mods. There are many mods or plugins available to complement the original [[Games/Minetest Game|Minetest game]] or give server admins more options and control over their servers.
 
  
 
== Modpacks ==
 
== Modpacks ==
A modpack (short: “MP”) is a collection of mods to group them together. Basically, a modpack is just special directory containing the actual mod directories. It's purely a logical grouping and is done mostly for convenience and to group closely-related mods together. The main difference is that they will be displayed differently in the mod manager in Minetest. Apart from that, there is nothing special about modpacks or mods inside a modpack. Individual mods in a modpack can still be enabled and disabled as if they were standalone mods.
+
A modpack (short: “MP”) is a collection of mods to group them together. Basically, a modpack is just special directory containing the actual mod directories. It's purely a logical grouping and is done mostly for convenience and to group closely-related mods together. The main difference is that they will be displayed as a openable blue text item in the minetest mod selector containing the component mods to allow granular control. Apart from that, there is nothing special about modpacks or mods inside a modpack. Individual mods in a modpack can still be enabled and disabled as if they were standalone mods.
  
 
== Client-Side Mods ==
 
== Client-Side Mods ==
A Client-Side Mod (short: “CSM”) is a mod used to customize your Minetest client. Client-Side Mods can be used when connected to a Minetest server because they are loaded locally. Client-Side mods require at least Minetest 0.4.15-dev from sources, compiled after April 1st, 2017. Please note API is currently not stable and can change.
+
A Client-Side Mod (short: “CSM”) is a mod used to customize your Minetest client. Client-Side Mods can be used when connected to a Minetest server because they are loaded locally. Client-Side mods require at least Minetest 0.4.15-dev from sources, compiled after April 1st, 2017. Please note that the API is currently not stable and can change.
  
 
== Finding mods ==
 
== Finding mods ==
=== Official sources ===
+
Generally, all mods you would want are available on [https://content.minetest.net ContentDB] nowadays. They can be installed from the main menu by going to the <i>Content</i> tab and clicking on the <i>Browse online content</i> button.
* ContentDB.  
 
Start the Minetest launcher and click on the tab <i>Content</i> and then on the button <i>Browse online content</i> to search and easily install mods, texturepacks or games. The ContentDB repository can also be viewed with a webbrowser at [https://content.minetest.net content.minetest.net].
 
* The official Minetest Forum at the subforum [https://forum.minetest.net/viewforum.php?f=46 Mods].
 
  
=== Unofficial sources ===
+
For old or experimental mods, check the [https://forum.minetest.net/viewforum.php?f=46 Mods] subforum.
* [https://krock-works.uk.to/minetest/modSearch.php Minetest mod search] A searchengine for mods and games, offered by the Coredeveloper [https://forum.minetest.net/memberlist.php?mode=viewprofile&u=7731 Krock (SmallJoker)]
 
* [[Minetest Bower]]
 
  
 
== Installation ==
 
== Installation ==
 
Starting with Mintest version 5.0.0 mods can be installed using the <i>Content</i> tab in the Minetest launcher.
 
Starting with Mintest version 5.0.0 mods can be installed using the <i>Content</i> tab in the Minetest launcher.
  
To manually install content for Minetest see also [[Installing Mods]] and [[Installing Client-Side Mods]].
+
To manually install content for Minetest see [https://content.minetest.net/help/installing/ How to install content].
  
 
== Creating mods ==
 
== Creating mods ==
The most mods are written in the scripting language [https://www.lua.org/ Lua]. The official Lua API documentation can be found at [https://github.com/minetest/minetest/blob/master/doc/lua_api.txt lua_api.txt]. Some mods are written in [https://en.wikipedia.org/wiki/C%2B%2B C++], like the minetest engine itself.
+
Mods are written in the scripting language [https://www.lua.org/ Lua]. The official Lua API documentation can be found at [https://github.com/minetest/minetest/blob/master/doc/lua_api.txt lua_api.txt] or in HTML format [https://minetest.gitlab.io/minetest/ here].
  
== Modding tutorials ==
+
=== Modding tutorials ===
* [https://rubenwardy.com/minetest_modding_book/en/index.html Minetest Modding Book] by [https://forum.minetest.net/memberlist.php?mode=viewprofile&u=2051 Rubenwardy] with editing by [https://forum.minetest.net/memberlist.php?mode=viewprofile&u=19807 Shara], available in english and italian (as of April 2021).
+
* [https://rubenwardy.com/minetest_modding_book/en/index.html Minetest Modding Book] by [https://rubenwardy.com/ rubenwardy] with editing by [https://forum.minetest.net/memberlist.php?mode=viewprofile&u=19807 Shara].
 
* [https://dev.minetest.net/Modding_Intro Intro to modding on the developer wiki]
 
* [https://dev.minetest.net/Modding_Intro Intro to modding on the developer wiki]
  
Line 39: Line 37:
 
[[File:Modsonservers.png|thumb|right|Most popular mods used on public servers listed at [https://servers.minetest.net servers.minetest.net] as of April 2020]]
 
[[File:Modsonservers.png|thumb|right|Most popular mods used on public servers listed at [https://servers.minetest.net servers.minetest.net] as of April 2020]]
 
{{clear}}
 
{{clear}}
 
== See also ==
 
[[Special:PrefixIndex/Mods]] - List of mods with an own wiki article.
 
  
 
[[Category:Mods]]
 
[[Category:Mods]]
 +
[[Category:Languages pages]]

Latest revision as of 18:48, 21 November 2023

Languages Language: English • Deutsch • español • français • italiano • 日本語 • Bahasa Melayu
An example of the mod Mesecons.

Mods (short for modifications or modules) are user-created modifications to a game in such a way that adds to or alters the gameplay. Some larger mods may add a lot of content to the game, while other smaller mods may add more settings/customization options or tweak the gameplay in small ways. Server mods or plugins mainly give server admins more options and ease of use, and all mods for singleplayer can also be used in multiplayer.

While Minetest mods are generally safe to install as they run by default in a sandboxed environment, one should exercise caution with mods as they may modify your world data in an undesired way. A good way to protect your game from such problems is to regularily back up your world folder(s) when installing new mods.

To browse the selection of mods available for Minetest games see ContentDB.

Modpacks

A modpack (short: “MP”) is a collection of mods to group them together. Basically, a modpack is just special directory containing the actual mod directories. It's purely a logical grouping and is done mostly for convenience and to group closely-related mods together. The main difference is that they will be displayed as a openable blue text item in the minetest mod selector containing the component mods to allow granular control. Apart from that, there is nothing special about modpacks or mods inside a modpack. Individual mods in a modpack can still be enabled and disabled as if they were standalone mods.

Client-Side Mods

A Client-Side Mod (short: “CSM”) is a mod used to customize your Minetest client. Client-Side Mods can be used when connected to a Minetest server because they are loaded locally. Client-Side mods require at least Minetest 0.4.15-dev from sources, compiled after April 1st, 2017. Please note that the API is currently not stable and can change.

Finding mods

Generally, all mods you would want are available on ContentDB nowadays. They can be installed from the main menu by going to the Content tab and clicking on the Browse online content button.

For old or experimental mods, check the Mods subforum.

Installation

Starting with Mintest version 5.0.0 mods can be installed using the Content tab in the Minetest launcher.

To manually install content for Minetest see How to install content.

Creating mods

Mods are written in the scripting language Lua. The official Lua API documentation can be found at lua_api.txt or in HTML format here.

Modding tutorials

Listing actual running mods

The ingame server command /mods will list the active mods of the actual running game.

Most popular mods used on public servers listed at servers.minetest.net as of April 2020