Minetest Mod: Adds achievements.
Go to file
Rubenwardy 3b845c0d81 another bug fix 2013-02-22 19:23:37 +00:00
.gitattributes Initial Commit 2013-02-22 17:53:42 +00:00
.gitignore Initial Commit 2013-02-22 17:53:42 +00:00
init.lua list awards command 2013-02-22 19:14:31 +00:00
readme.md update readme 2013-02-22 19:19:37 +00:00
triggers.lua another bug fix 2013-02-22 19:23:37 +00:00

readme.md

Awards

by Andrew "Rubenwardy" Ward, CC-BY-SA.

This mod adds achievements to Minetest.

Code Reference

The API

  • awards.register_achievement(name,data_table)
    • name
    • desciption
    • sound [optional]
    • image [optional]
    • func [optional] - see below
  • awards.register_onDig(func)
    • -- return true if the medal should be rewarded
    • -- there will be built in versions of this function

Player Data

A list of data referenced/hashed by the player's name.

  • name [string]
  • getNodeCount('node_name') [function]
  • count [table]
    • modname [table] *itemname [int]