advmarkers/README.md

33 lines
2.1 KiB
Markdown
Raw Normal View History

2018-12-29 15:09:58 -08:00
# advmarkers
A marker/waypoint CSM for Minetest, designed for use with the [marker] mod.
To display markers, the server currently needs the [marker] mod installed,
otherwise "command not found" errors will be displayed, as CSMs cannot currently
create HUDs on their own.
## How to use
2018-12-29 20:13:39 -08:00
`advmarkers` introduces the following chatcommands:
2018-12-29 15:09:58 -08:00
- `.mrkr`: Opens a formspec allowing you to display or delete markers.
2018-12-29 20:13:39 -08:00
- `.add_mrkr`: Adds markers. You can use `.add_mrkr x,y,z Marker name` to add markers. Markers are (currently) cross-server, and adding a marker with (exactly) the same name as another will overwrite the original marker. If you replace `x,y,z` with `here`, the marker will be set to your current position, and replacing it with `there` will set the marker to the last `.coords` position.
2019-01-07 00:45:41 -08:00
- `.mrkr_export`: Exports your markers to an advmarkers string. Remember to not modify the text before copying it. You can use `.mrkr_export old` if you want an export string compatible with older versions of advmarkers (it should start with `M` instead of `J`). The old format will probably not work nicely with the planned server-side mod, however.
- `.mrkr_import`: Imports your markers from an advmarkers string (`.mrkr_import <advmarkers string>`). Any markers with the same name will not be overwritten, and if they do not have the same co-ordinates, `_` will be appended to the imported one.
2018-12-29 20:13:39 -08:00
- `.mrkrthere`: Sets a marker at the last `.coords` position.
2018-12-29 15:09:58 -08:00
2018-12-29 20:23:49 -08:00
If you die, a marker is automatically added at your death position, and will
update the last `.coords` position.
2018-12-29 15:09:58 -08:00
2018-12-29 20:13:39 -08:00
## Chat channels integration
advmarkers works with the `.coords` command from chat_channels ([GitHub],
[GitLab]), even without chat channels installed. When someone does `.coords`,
advmarkers temporarily stores this position, and you can set a temporary marker
at the `.coords` position with `.mrkrthere`, or add a permanent marker with
`.add_mrkr there Marker name`.
2018-12-29 15:09:58 -08:00
[marker]: https://github.com/Billy-S/kingdoms_game/blob/master/mods/marker
2018-12-29 20:13:39 -08:00
[GitHub]: https://github.com/luk3yx/minetest-chat_channels
[GitLab]: https://gitlab.com/luk3yx/minetest-chat_channels