2016-08-01 23:39:32 +02:00
|
|
|
if minetest.get_modpath("sfinv") then
|
2016-08-30 11:31:16 +02:00
|
|
|
local S
|
|
|
|
if (intllib) then
|
|
|
|
dofile(minetest.get_modpath("intllib").."/intllib.lua")
|
|
|
|
S = intllib.Getter(minetest.get_current_modname())
|
|
|
|
else
|
|
|
|
S = function ( s ) return s end
|
|
|
|
end
|
|
|
|
|
2016-08-01 23:39:32 +02:00
|
|
|
sfinv.register_page("awards:awards", {
|
2016-08-30 11:31:16 +02:00
|
|
|
title = S("Awards"),
|
2016-08-01 23:39:32 +02:00
|
|
|
on_enter = function(self, player, context)
|
|
|
|
context.awards_idx = 1
|
|
|
|
end,
|
|
|
|
get = function(self, player, context)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
return sfinv.make_formspec(player, context,
|
|
|
|
awards.getFormspec(name, name, context.awards_idx or 1),
|
|
|
|
false, "size[11,5]")
|
|
|
|
end,
|
|
|
|
on_player_receive_fields = function(self, player, context, fields)
|
|
|
|
if fields.awards then
|
|
|
|
local event = minetest.explode_textlist_event(fields.awards)
|
|
|
|
if event.type == "CHG" then
|
|
|
|
context.awards_idx = event.index
|
|
|
|
sfinv.set(player, context)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
end
|