Содержание

Minetest

Бесплатный аналог Майнкрафта

http://www.minetest.net/

Mods

Simple Skins - выбор скинов игры.
Пути:

Сайт со скинами: https://www.minecraftskins.com/
Конвертер под Майнтест: http://minetest.tv/skin-converter.php

Вроде бы есть другой способ:

  1. rename it to character
  2. put it into your textures map

Ориентирование на карте

Coordinates are expressed like this: (5, 45, -12)

This refers to the position where X=5, Y=45 and Z=-12. The 3 letters are called “axes”: Y is for the height. X and Z are for the horizontal position.

The values for X, Y and Z work like this:

The easiest way to view your coordinates is by using the debug screen (open with F5). This may be considered cheating in some games (you decide).

https://wiki.minetest.net/Coordinates

Генератор карты мира

https://wiki.minetest.net/Minetestmapper
https://github.com/minetest/minetestmapper

# подразумевается, что Minetestmapper - подпапка в каталоге игры
cd "$env:userprofile\Games\minetest-5.0.1-win64\minetestmapper"
 
dir "..\worlds" -Directory |% {
& .\minetestmapper.exe `
-i "$($_.fullname)" `
-o "..\$($_.name).png" `
--drawplayers --zoom 2
}