blob: 917f2aaee4b8ea7a5344c73f384fa4c6b75e2ad1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
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.give_achievement(name,award)
* -- gives an award to a player
* awards.register_onDig(func)
* -- return award name or null
* -- there will be built in versions of this function
* awards.register_onPlace(func)
* -- return award name or null
* -- 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] - dig counter
* modname [table]
* itemname [int]
* place [table] - place counter
* modname [table]
* itemname [int]
|