diff options
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | depends.txt | 1 | ||||
-rw-r--r-- | init.lua | 9 | ||||
-rw-r--r-- | sounds/doc_reveal.ogg | bin | 0 -> 8873 bytes |
4 files changed, 13 insertions, 0 deletions
@@ -21,3 +21,6 @@ This mod helps you in writing extensive documentation for your mod or subgame. You can write about basically anything in the presentation you prefer. To get started, read `API.md` in the directory of this mod. + +## License of everything +WTFPL diff --git a/depends.txt b/depends.txt index 20b7c42..a4d39ae 100644 --- a/depends.txt +++ b/depends.txt @@ -1 +1,2 @@ unified_inventory? +central_message? @@ -79,6 +79,15 @@ function doc.mark_entry_as_revealed(playername, category_id, entry_id) doc.data.players[playername].stored_data.revealed_count[category_id] = doc.data.players[playername].stored_data.revealed_count[category_id] + 1 -- Needed because a new entry is added to the list of visible entries doc.data.players[playername].entry_textlist_needs_updating = true + if minetest.get_modpath("central_message") ~= nil then + local cat = doc.data.categories[category_id] + cmsg.push_message_player(minetest.get_player_by_name(playername), string.format("New help entry unlocked: %s > %s", cat.def.name, entry.name)) + end + local last_sound = doc.data.players[playername].last_reveal_sound + if last_sound == nil or os.difftime(os.time(), last_sound) >= 1 then + minetest.sound_play({ name = "doc_reveal", gain = 0.2 }, { to_player = playername }) + doc.data.players[playername].last_reveal_sound = os.time() + end end end diff --git a/sounds/doc_reveal.ogg b/sounds/doc_reveal.ogg Binary files differnew file mode 100644 index 0000000..3fbe176 --- /dev/null +++ b/sounds/doc_reveal.ogg |