Go to file
Traxie21 dd3de62572 -Added formspec system
-Added 3 new api values for formspec (background, icon, and custom_announce)
-Added configuration file
-Fixed one glitch that happens when you mine stone and rejoin
-Addded textures
2013-02-25 13:15:40 -06:00
textures -Added formspec system 2013-02-25 13:15:40 -06:00
.gitattributes Initial Commit 2013-02-22 17:53:42 +00:00
.gitignore Initial Commit 2013-02-22 17:53:42 +00:00
api.lua -Added formspec system 2013-02-25 13:15:40 -06:00
config.txt -Added formspec system 2013-02-25 13:15:40 -06:00
init.lua -Added formspec system 2013-02-25 13:15:40 -06:00
readme.md add onDeath 2013-02-23 15:13:21 +00:00
triggers.lua add onDeath 2013-02-23 15:13:21 +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]
    • trigger [optional] [table]
      • type - "dig" or "place"
      • (for dig/place type) node - the nodes name
      • (for all types) target - how many to dig / place
  • awards.give_achievement(name,award)
    • -- gives an award to a player
  • awards.register_onDig(func(player,data))
    • -- return award name or null
  • awards.register_onPlace(func(player,data))
    • -- return award name or null
  • awards.register_onDeath(func(player,data))
    • -- return award name or null

Player Data

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

  • player name
    • name [string]
    • count [table] - dig counter
      • modname [table]
        • itemname [int]
    • place [table] - place counter
      • modname [table]
        • itemname [int]