Add report

This commit is contained in:
rubenwardy 2015-12-07 23:28:50 +00:00
parent f556a1ae26
commit c1bafebbdd
2 changed files with 21 additions and 0 deletions

1
mods/report/depends.txt Normal file
View file

@ -0,0 +1 @@
chatplus

20
mods/report/init.lua Normal file
View file

@ -0,0 +1,20 @@
minetest.register_chatcommand("report", {
func = function(name, param)
local mods = ""
for _, player in pairs(minetest.get_connected_players()) do
local name = player:get_player_name()
if minetest.check_player_privs(name, {kick=true,ban=true}) then
if mods ~= "" then
mods = mods .. ", "
end
mods = mods .. name
minetest.chat_send_player(name, "-!- " .. name .. " reported: " .. param)
end
end
if mods == "" then
mods = "none"
end
chatplus.send_mail(name, minetest.setting_get("name"),
"Report: " .. param .. " (mods online: " .. mods .. ")")
end
})