Add achievements button
This commit is contained in:
parent
e840fcbe5e
commit
193193ec2b
5 changed files with 16 additions and 1 deletions
1
mods/HUD/mcl_achievements/README.txt
Normal file
1
mods/HUD/mcl_achievements/README.txt
Normal file
|
@ -0,0 +1 @@
|
|||
License of this mod (including textures and other data): WTFPL
|
|
@ -200,3 +200,11 @@ awards.register_achievement("mcl:f_placeRails", {
|
|||
}
|
||||
})
|
||||
|
||||
|
||||
-- Show achievements formspec when the button was pressed
|
||||
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||
if fields.__mcl_achievements then
|
||||
local name = player:get_player_name()
|
||||
awards.show_to(name, name, nil, false)
|
||||
end
|
||||
end)
|
||||
|
|
BIN
mods/HUD/mcl_achievements/textures/mcl_achievements_button.png
Normal file
BIN
mods/HUD/mcl_achievements/textures/mcl_achievements_button.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 408 B |
Loading…
Add table
Add a link
Reference in a new issue