Tasks & questing framework for Luanti (Minetest). Inspired by Stendhal's quest API.
WARNING: This mod is in early development & may not be suitable for production servers.
Similar to TeTpaAka's Quest Framework, this mod aims to be a library for adding quests & tasks to games. It is meant to be a minimalist library, so does not include any formspec interfaces. Mods must create their own which can be populated using the functions:
tasks.get_registered()
: Returns list of all registered task IDs.tasks.get_title(id)
: Returns task title string.tasks.get_description(id)
: Returns task description string.tasks.get_player_log(player, id)
: Returns list of task string descriptors for player's state.
none