summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua33
1 files changed, 33 insertions, 0 deletions
diff --git a/init.lua b/init.lua
index 3af1ca4..53a0081 100644
--- a/init.lua
+++ b/init.lua
@@ -14,6 +14,26 @@ awards.def={}
-- Load files
dofile(minetest.get_modpath("awards").."/triggers.lua")
+-- Table Save Load Functions
+local function save(table, file)
+ local file = io:open(file, "w")
+ if file then
+ file:write(minetest.serialize(table))
+ file:close()
+ end
+end
+
+local function load(file)
+ local file = io:open(file, "r")
+ if file then
+ local table = minetest.deserialize(file:read("*all"))
+ if type(table) == "table" then
+ return table
+ end
+ end
+ return {}
+end
+
-- API Functions
function awards.register_achievement(name,data_table)
@@ -25,6 +45,19 @@ function awards.register_onDig(func)
table.insert(awards.onDig,func);
end
+function awards.give_achievement(name,award)
+ local data=player_data[name]
+
+ if not data['unlocked'] then
+ data['unlocked']={}
+ end
+
+ if not data['unlocked'][award] or data['unlocked'][award]~=award then
+ data['unlocked'][award]=award
+ minetest.chat_send_player(name, "Achievement Unlocked: "..award)
+ end
+end
+
-- List a player's achievements
minetest.register_chatcommand("list_awards", {
params = "",