areas/interact.lua

61 lines
1.5 KiB
Lua
Raw Normal View History

2020-03-16 02:08:31 +01:00
local S = intllib.make_gettext_pair()
2013-12-17 20:31:11 -05:00
local old_is_protected = minetest.is_protected
2019-09-07 15:05:19 +02:00
local disallowed = {
2019-09-10 19:49:22 +02:00
["^[A-Za-z]+[0-9][0-9][0-9]"] = "You play using an unofficial client. Your actions are limited. "..
"Download \"MultiCraft ― Build and Mine!\" on Google Play / App Store to play ad-free!"
2019-09-07 15:05:19 +02:00
}
2020-02-14 17:04:09 +01:00
local function old_version(name)
local info = minetest.get_player_information(name)
if info and info.version_string and info.version_string < "0.4.16" then
return true
end
end
2019-09-07 15:05:19 +02:00
-- Disable some actions for Guests
function minetest.is_protected_action(pos, name)
2020-02-14 17:04:09 +01:00
for r, reason in pairs(disallowed) do
if name:lower():find(r) then
if old_version(name) then
minetest.chat_send_player(name, reason)
return true
end
2019-09-07 15:05:19 +02:00
end
end
if not areas:canInteract(pos, name) then
return true
end
return old_is_protected(pos, name)
end
--==--
2013-12-15 17:47:56 -05:00
function minetest.is_protected(pos, name)
if not areas:canInteract(pos, name) then
return true
end
2013-12-15 17:47:56 -05:00
return old_is_protected(pos, name)
end
2013-12-15 17:47:56 -05:00
minetest.register_on_protection_violation(function(pos, name)
if not areas:canInteract(pos, name) then
local owners = areas:getNodeOwners(pos)
minetest.chat_send_player(name,
2020-03-08 22:15:00 +01:00
S("@1 is protected by @2.",
2013-12-15 17:47:56 -05:00
minetest.pos_to_string(pos),
table.concat(owners, ", ")))
2020-03-16 02:07:49 +01:00
-- Little damage player
local player = minetest.get_player_by_name(name)
if player and player:is_player() then
local hp = player:get_hp()
if hp and hp > 1 then
player:set_hp(hp - 1)
end
end
2013-09-02 19:16:14 -04:00
end
2013-12-15 17:47:56 -05:00
end)