1
0
Fork 0
Minetest mod that adds map items that show terrain in HUD (that i had to fork for some odd reason)
Go to file
LissoBone 4cc163e668 Added protector optional dependency. 2023-09-18 16:21:53 +09:00
textures Add tiny player position marker 2022-05-22 15:54:25 +02:00
LICENSE Add LICENSE 2022-05-20 19:16:39 +02:00
README.md Mention placed maps in README.md 2022-05-21 22:14:59 +02:00
generate_textures.lua Add tiny player position marker 2022-05-22 15:54:25 +02:00
init.lua Slightly improved first two functions in init.lua, added protection support. 2023-09-18 15:54:40 +09:00
mod.conf Added protector optional dependency. 2023-09-18 16:21:53 +09:00
screenshot.png Add screenshot 2022-05-20 20:11:46 +02:00

README.md

X Maps

This mod adds map items that show terrain in HUD.

The HUD shows a player position & direction marker.

Treasure maps are like normal maps that show a red X.

Maps can be placed in the world on the sides of nodes.

In Minetest Game

A right click with a mapping kit creates a map of the area.

If you target a node, its position shows as a red X on a map.

With the X players can share coordinates or have treasure hunts.

X Maps API

You can use xmaps.create_map_item() to create a treasure map:

local itemstack = xmaps.create_map_item(pos, { draw_x = true })

Notes

xmaps is similar to mcl_maps, which is part of MineClone2.

All map items and placed maps have a TGA file in the metadata.

This enables items and placed maps to work in world downloads.

TODO

  • Align mapped area with mapblocks (for better performance)
  • Add support for mods with nodes that can show bitmaps
  • Make it possible to wield map item in player hand
  • Add more icons to represent the terrain better
  • Make maps update while player is moving
  • Make it possible to combine maps