Knowledge Base

Preserving for the future: Shell scripts, AoC, and more

Find xyz of village3 block in Luanti

If you want to find the exact coordinate of your poi block which you buried in a wall or the ground somewhere, use this sqlite3 snippet.

$ sqlite3 mapserver.sqlite
sqlite> select o.* from objects o JOIN object_attributes oa ON o.uid = oa.object_uid where oa.value like '%village3%';
uid|x|y|z|posx|posy|posz|type|mtime
32467ab9-b5fb-4109-bf97-08e77b606b48|-11|28|-1345|-1|1|-85|poi|1746707872

Screenshot of village3 poi block in-game

Comments