Difference between revisions of "Games/Minetest Game"

From Minetest Wiki
Jump to navigation Jump to search
(added more info to the top and some games mentioned in the forum thread)
Line 1: Line 1:
'''Minetest''' (technical name: “<code>minetest_game</code>”) is a [[game|Minetest game]]  which is installed by default.  
+
'''Minetest''' (technical name: “<code>minetest_game</code>”) is a [[game|Minetest game]]  which is installed by default. Since early 2014 the Minetest-Game is semi-officially under feature freeze. It is not dropped and will be kept available in maintenance-mode as basis for all mods that depend on "default".  
  
 
== Function ==
 
== Function ==
Line 6: Line 6:
  
 
The Minetest-Game is not needed to play on other servers as all game content is controlled and "served" by the hosting server. Only when running an own Minetest server is some playable content needed that is normally a collection of mod scripts in a “game” folder. “Single-player” may be viewed as a special case when the Minetest program acts as server, hosting a local game and then connects to its own self as client.   
 
The Minetest-Game is not needed to play on other servers as all game content is controlled and "served" by the hosting server. Only when running an own Minetest server is some playable content needed that is normally a collection of mod scripts in a “game” folder. “Single-player” may be viewed as a special case when the Minetest program acts as server, hosting a local game and then connects to its own self as client.   
 +
  
 
=== As basis for new games ===
 
=== As basis for new games ===
 
The game-play can be modified considerably by Lua scripts organized in mods. As a lot of mods name “default” as dependency, the Minetest-Game is thought as the basic content on which game designers may build their own games. Thus if compatibility with most mods is the aim of a new game it is advisable to start building the new game by adding content to a copy of the default Minetest game.
 
The game-play can be modified considerably by Lua scripts organized in mods. As a lot of mods name “default” as dependency, the Minetest-Game is thought as the basic content on which game designers may build their own games. Thus if compatibility with most mods is the aim of a new game it is advisable to start building the new game by adding content to a copy of the default Minetest game.
 +
  
 
=== As collection of modding examples ===
 
=== As collection of modding examples ===
 
Although this may seem trivial this function of the Minetest game should not be forgotten as it often offers the first example of how to code things for modders.
 
Although this may seem trivial this function of the Minetest game should not be forgotten as it often offers the first example of how to code things for modders.
 +
  
 
=== Notable things not included ===
 
=== Notable things not included ===
Line 18: Line 21:
 
Although the default game offers rails, it does not include mine carts, boats or any other vehicles as such.  
 
Although the default game offers rails, it does not include mine carts, boats or any other vehicles as such.  
 
No mobs<ref name="rats">Though rats might just be able to sneak in if you are not carefull ;-).</ref> or NPCs are included and no API for these is offered.
 
No mobs<ref name="rats">Though rats might just be able to sneak in if you are not carefull ;-).</ref> or NPCs are included and no API for these is offered.
 +
  
 
== Content ==
 
== Content ==
Line 39: Line 43:
 
** legacy: adds old items like [[rat]] and [[Cooked Rat|cooked rat]] and a bunch of aliases for compatibility with very old Minetest versions.
 
** legacy: adds old items like [[rat]] and [[Cooked Rat|cooked rat]] and a bunch of aliases for compatibility with very old Minetest versions.
 
** external_legacy: Maintains compatibility with player-made mods which have been merged into minetest_game. Currently, these mods are ''diamonds'' and ''moreores''.
 
** external_legacy: Maintains compatibility with player-made mods which have been merged into minetest_game. Currently, these mods are ''diamonds'' and ''moreores''.
 +
  
 
== Future development ==
 
== Future development ==
The consensus of the Minetest developers seems to be that the Minetest-Game should be changed as little as possible<ref name="consens">[https://forum.minetest.net/viewtopic.php?pid=137837 "Minetest Game will no longer be developed"] thread on the Minetest forum.</ref> and rather no new content added. Thus offering the most compatibility to old mods and leaving the bulk of game content for game designers to develop. To give more examples of the possibilities of the Minetest engine it has been discussed to include more example games in the download archive. The only other game that is included in the 0.4.9 versions of Minetest is Minimal, which is only recommended for testing purposes. Games suggested as example games have been Pilztest, Nostalgia, Realtest and Ethereal among others as these give examples of different gameplay or environment.
+
The consensus of the Minetest developers seems to be that the Minetest-Game should be changed as little as possible<ref name="consens">[https://forum.minetest.net/viewtopic.php?pid=137837 "Minetest Game will no longer be developed"] thread on the Minetest forum.</ref> (feature-freeze) and rather no new content added. Thus offering the most compatibility to old mods and leaving the bulk of game content for game designers to develop. To give more examples of the possibilities of the Minetest engine it has been discussed to include more example games in the download archive. The only other game that is included in the 0.4.9 versions of Minetest is Minimal, which is only recommended for testing purposes. Games suggested as example games have been Pilztest, Nostalgia, Realtest, Ethereal and as of new BFD, Minetest NeXt and Carbone have been considered among others as these give examples of different gameplay or environment.
 +
 
  
== References ==
+
== Notes and References ==
 
<references />
 
<references />
  
 
[[Category:Games]]
 
[[Category:Games]]

Revision as of 22:04, 15 April 2014

Minetest (technical name: “minetest_game”) is a Minetest game which is installed by default. Since early 2014 the Minetest-Game is semi-officially under feature freeze. It is not dropped and will be kept available in maintenance-mode as basis for all mods that depend on "default".

Function

As default game

This game is included by default to give some initial single player content when Minetest is downloaded in the single archive file from the download section of the homepage. It includes some basic mods that add enough game content to offer a simple playable game with control keys and basic gameplay activities set to be function similar to other games of the genre to make immediate playing possible.

The Minetest-Game is not needed to play on other servers as all game content is controlled and "served" by the hosting server. Only when running an own Minetest server is some playable content needed that is normally a collection of mod scripts in a “game” folder. “Single-player” may be viewed as a special case when the Minetest program acts as server, hosting a local game and then connects to its own self as client.


As basis for new games

The game-play can be modified considerably by Lua scripts organized in mods. As a lot of mods name “default” as dependency, the Minetest-Game is thought as the basic content on which game designers may build their own games. Thus if compatibility with most mods is the aim of a new game it is advisable to start building the new game by adding content to a copy of the default Minetest game.


As collection of modding examples

Although this may seem trivial this function of the Minetest game should not be forgotten as it often offers the first example of how to code things for modders.


Notable things not included

As the Minetest game is included in the download archive it is supposed to be lightweight and as gameplay-neutral as possible. It therefore often irritates new players that many things known from similar games are not included by default.

Although the default game offers rails, it does not include mine carts, boats or any other vehicles as such. No mobs[1] or NPCs are included and no API for these is offered.


Content

It contains the following mods:


Future development

The consensus of the Minetest developers seems to be that the Minetest-Game should be changed as little as possible[2] (feature-freeze) and rather no new content added. Thus offering the most compatibility to old mods and leaving the bulk of game content for game designers to develop. To give more examples of the possibilities of the Minetest engine it has been discussed to include more example games in the download archive. The only other game that is included in the 0.4.9 versions of Minetest is Minimal, which is only recommended for testing purposes. Games suggested as example games have been Pilztest, Nostalgia, Realtest, Ethereal and as of new BFD, Minetest NeXt and Carbone have been considered among others as these give examples of different gameplay or environment.


Notes and References

  1. Though rats might just be able to sneak in if you are not carefull ;-).
  2. "Minetest Game will no longer be developed" thread on the Minetest forum.