Convert Figma logo to code with AI

luanti-org logominetest_game

Minetest Game - A lightweight and well-maintained base for Luanti, intended for modding

1,475
590
1,475
55

Top Related Projects

11,573

Luanti (formerly Minetest) is an open source voxel game-creation platform with easy modding and game creation

Quick Overview

Minetest Game is the default game bundled with the Minetest engine, an open-source voxel game engine. It provides a basic sandbox world with crafting, building, and exploration elements, serving as a foundation for players and modders to create their own experiences.

Pros

  • Highly customizable and moddable, allowing for extensive content creation
  • Lightweight and runs well on a wide range of hardware
  • Active community contributing to development and creating mods
  • Free and open-source, promoting collaboration and transparency

Cons

  • Graphics and default content may feel basic compared to more polished commercial games
  • Learning curve for modding and creating custom content can be steep for beginners
  • Smaller player base compared to similar commercial games
  • Some features and polish found in other voxel games may be missing in the default game

Getting Started

To get started with Minetest Game:

  1. Download and install Minetest from the official website: https://www.minetest.net/
  2. Launch Minetest and select "New Game"
  3. Choose "Minetest Game" as the game
  4. Configure world settings as desired and click "Create"
  5. Start playing and exploring the world
  6. To add mods, download them from the Minetest forums or ContentDB and place them in the "mods" folder of your world or the global mods folder

For modding and development:

  1. Clone the Minetest Game repository:
    git clone https://github.com/minetest/minetest_game.git
    
  2. Refer to the Minetest Lua API documentation for modding guidelines and examples
  3. Create new mods in the "mods" folder or modify existing game content
  4. Test your changes by running Minetest with the modified game files

Competitor Comparisons

11,573

Luanti (formerly Minetest) is an open source voxel game-creation platform with easy modding and game creation

Pros of Luanti

  • More focused on educational and research purposes
  • Potentially more flexible for customization and experimentation
  • Likely has a smaller codebase, making it easier to understand and modify

Cons of Luanti

  • Less mature and established compared to Minetest Game
  • Smaller community and fewer resources available
  • May have fewer features and content out of the box

Code Comparison

Minetest Game (Lua):

minetest.register_node("default:stone", {
    description = "Stone",
    tiles = {"default_stone.png"},
    groups = {cracky = 3, stone = 1},
    drop = "default:cobble",
    legacy_mineral = true,
    sounds = default.node_sound_stone_defaults(),
})

Luanti (Python):

class Stone(Block):
    def __init__(self):
        super().__init__("stone", "Stone")
        self.texture = load_texture("textures/stone.png")
        self.hardness = 1.5

Note: The code comparison is hypothetical, as Luanti's actual codebase is not publicly available for direct comparison.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Minetest Game

ContentDB

Minetest Game (abbreviated MTG) is a simple and peaceful sandbox game, with no real goals or built-in enemy mobs.

While it provides a basic gameplay experience out of the box, it is best played with mods.

Minetest Game is in perpetual maintenance-only mode, meaning it will not see new gameplay features or anything else that breaks compatibility (see #2710).

Installation

ContentDB

  • Content > Browse Online Content
  • Search for "Minetest Game"
  • Click Install

Manually

  • Unzip the archive, rename the folder to minetest_game and place it in .../minetest/games/

  • GNU/Linux: If you use a system-wide installation place it in ~/.minetest/games/.

The Luanti engine can be found at GitHub.

For further information or help, see: Installing Mods.

Compatibility

As of January 2024 Minetest Game follows a rolling release model with new changes being automatically published on ContentDB every day.

There are no stable releases or tags, all existing ones are considered legacy.

Minetest Game is always compatible to the latest stable release of the engine. Older releases may be supported too depending on circumstances.

Licensing

See LICENSE.txt