forked from mt-mods/mail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathonjoin.lua
More file actions
23 lines (19 loc) · 663 Bytes
/
Copy pathonjoin.lua
File metadata and controls
23 lines (19 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- translation
local S = minetest.get_translator("mail")
minetest.register_on_joinplayer(function(player)
minetest.after(2, function(name)
local entry = mail.get_storage_entry(name)
local messages = entry.inbox
mail.hud_update(name, messages)
local unreadcount = 0
for _, message in pairs(messages) do
if not message.read then
unreadcount = unreadcount + 1
end
end
if unreadcount > 0 and mail.get_setting(name, "onjoin_notifications") then
minetest.chat_send_player(name,
minetest.colorize(mail.get_color("new"), "(" .. unreadcount .. ") " .. S("You have mail! Type /mail to read")))
end
end, player:get_player_name())
end)