2015-02-12 10:36:34 +01:00
|
|
|
minetest.register_privilege("delprotect","Ignore player protection")
|
2014-11-09 20:43:01 +01:00
|
|
|
|
2015-08-19 12:34:19 +02:00
|
|
|
-- get static spawn position
|
|
|
|
local statspawn = (minetest.setting_get_pos("static_spawnpoint") or {x = 0, y = 2, z = 0})
|
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
protector = {}
|
2015-08-04 21:41:34 +02:00
|
|
|
protector.mod = "redo"
|
2015-04-11 14:09:00 +02:00
|
|
|
protector.radius = (tonumber(minetest.setting_get("protector_radius")) or 5)
|
2015-08-31 12:23:34 +02:00
|
|
|
protector.pvp = minetest.setting_getbool("protector_pvp")
|
2015-08-19 12:34:19 +02:00
|
|
|
protector.spawn = (tonumber(minetest.setting_get("protector_pvp_spawn")) or 0)
|
2014-11-09 20:43:01 +01:00
|
|
|
|
|
|
|
protector.get_member_list = function(meta)
|
2015-04-11 14:09:00 +02:00
|
|
|
return meta:get_string("members"):split(" ")
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
protector.set_member_list = function(meta, list)
|
|
|
|
meta:set_string("members", table.concat(list, " "))
|
|
|
|
end
|
|
|
|
|
|
|
|
protector.is_member = function (meta, name)
|
2015-04-11 14:09:00 +02:00
|
|
|
for _, n in ipairs(protector.get_member_list(meta)) do
|
2014-11-09 20:43:01 +01:00
|
|
|
if n == name then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
protector.add_member = function(meta, name)
|
|
|
|
if protector.is_member(meta, name) then return end
|
|
|
|
local list = protector.get_member_list(meta)
|
2015-07-24 17:21:53 +02:00
|
|
|
table.insert(list, name)
|
2014-11-09 20:43:01 +01:00
|
|
|
protector.set_member_list(meta,list)
|
|
|
|
end
|
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
protector.del_member = function(meta, name)
|
2014-11-09 20:43:01 +01:00
|
|
|
local list = protector.get_member_list(meta)
|
|
|
|
for i, n in ipairs(list) do
|
|
|
|
if n == name then
|
|
|
|
table.remove(list, i)
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
2015-07-24 17:21:53 +02:00
|
|
|
protector.set_member_list(meta, list)
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
-- Protector Interface
|
|
|
|
|
|
|
|
protector.generate_formspec = function(meta)
|
2015-02-13 20:10:29 +01:00
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
local formspec = "size[8,7]"
|
|
|
|
..default.gui_bg..default.gui_bg_img..default.gui_slots
|
2015-02-12 10:36:34 +01:00
|
|
|
.."label[2.5,0;-- Protector interface --]"
|
2015-02-13 20:10:29 +01:00
|
|
|
.."label[0,1;PUNCH node to show protected area or USE for area check]"
|
|
|
|
.."label[0,2;Members: (type player name then press Enter to add)]"
|
|
|
|
|
2014-11-25 20:14:28 +01:00
|
|
|
local members = protector.get_member_list(meta)
|
2015-02-12 10:36:34 +01:00
|
|
|
local npp = 12
|
2014-11-09 20:43:01 +01:00
|
|
|
local i = 0
|
|
|
|
for _, member in ipairs(members) do
|
|
|
|
if i < npp then
|
2015-07-24 17:21:53 +02:00
|
|
|
formspec = formspec .. "button[" .. (i % 4 * 2)
|
|
|
|
.. "," .. math.floor(i / 4 + 3)
|
|
|
|
.. ";1.5,.5;protector_member;" .. member .. "]"
|
|
|
|
.. "button[" .. (i % 4 * 2 + 1.25) .. ","
|
|
|
|
.. math.floor(i / 4 + 3)
|
|
|
|
.. ";.75,.5;protector_del_member_" .. member .. ";X]"
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
2015-05-27 19:15:04 +02:00
|
|
|
i = i + 1
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
2015-02-13 20:10:29 +01:00
|
|
|
|
|
|
|
if i < npp then
|
2015-07-24 17:21:53 +02:00
|
|
|
formspec = formspec .. "field[" .. (i % 4 * 2 + 1 / 3) .. ","
|
|
|
|
.. (math.floor(i / 4 + 3) + 1 / 3) .. ";1.433,.5;protector_add_member;;]"
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
2015-02-13 20:10:29 +01:00
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
formspec = formspec .. "button_exit[2.5,6.2;3,0.5;close_me;Close]"
|
2015-02-13 20:10:29 +01:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
return formspec
|
|
|
|
end
|
|
|
|
|
|
|
|
-- ACTUAL PROTECTION SECTION
|
|
|
|
|
|
|
|
-- Infolevel:
|
|
|
|
-- 0 for no info
|
|
|
|
-- 1 for "This area is owned by <owner> !" if you can't dig
|
|
|
|
-- 2 for "This area is owned by <owner>.
|
|
|
|
-- 3 for checking protector overlaps
|
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
protector.can_dig = function(r, pos, digger, onlyowner, infolevel)
|
2014-11-09 20:43:01 +01:00
|
|
|
|
2015-10-02 11:32:44 +02:00
|
|
|
if not digger
|
|
|
|
or not pos then
|
2014-11-09 20:43:01 +01:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Delprotect privileged users can override protections
|
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
if minetest.check_player_privs(digger, {delprotect = true})
|
|
|
|
and infolevel == 1 then
|
2014-11-09 20:43:01 +01:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
if infolevel == 3 then infolevel = 1 end
|
|
|
|
|
|
|
|
-- Find the protector nodes
|
|
|
|
|
|
|
|
local positions = minetest.find_nodes_in_area(
|
2015-07-24 17:21:53 +02:00
|
|
|
{x = pos.x - r, y = pos.y - r, z = pos.z - r},
|
|
|
|
{x = pos.x + r, y = pos.y + r, z = pos.z + r},
|
2014-11-09 20:43:01 +01:00
|
|
|
{"protector:protect", "protector:protect2"})
|
|
|
|
|
2015-05-12 18:56:16 +02:00
|
|
|
local meta, owner, members
|
2015-04-27 09:15:04 +02:00
|
|
|
for _, pos in ipairs(positions) do
|
2015-05-12 18:56:16 +02:00
|
|
|
meta = minetest.get_meta(pos)
|
|
|
|
owner = meta:get_string("owner")
|
|
|
|
members = meta:get_string("members")
|
2014-11-09 20:43:01 +01:00
|
|
|
|
2015-04-11 14:09:00 +02:00
|
|
|
if owner ~= digger then
|
|
|
|
if onlyowner or not protector.is_member(meta, digger) then
|
2015-10-09 16:13:24 +02:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
if infolevel == 1 then
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.chat_send_player(digger,
|
|
|
|
"This area is owned by " .. owner .. " !")
|
2014-11-09 20:43:01 +01:00
|
|
|
elseif infolevel == 2 then
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.chat_send_player(digger,
|
|
|
|
"This area is owned by " .. owner .. ".")
|
|
|
|
minetest.chat_send_player(digger,
|
|
|
|
"Protection located at: " .. minetest.pos_to_string(pos))
|
2015-04-11 14:09:00 +02:00
|
|
|
if members ~= "" then
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.chat_send_player(digger,
|
|
|
|
"Members: " .. members .. ".")
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end
|
2015-10-09 16:13:24 +02:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
2015-04-11 14:09:00 +02:00
|
|
|
|
|
|
|
if infolevel == 2 then
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.chat_send_player(digger,
|
|
|
|
"This area is owned by " .. owner .. ".")
|
|
|
|
minetest.chat_send_player(digger,
|
2015-10-09 16:13:24 +02:00
|
|
|
"Protection located at: " .. minetest.pos_to_string(pos))
|
2015-04-11 14:09:00 +02:00
|
|
|
if members ~= "" then
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.chat_send_player(digger,
|
|
|
|
"Members: " .. members .. ".")
|
2015-04-11 14:09:00 +02:00
|
|
|
end
|
2015-10-09 16:13:24 +02:00
|
|
|
|
|
|
|
return false
|
2015-04-11 14:09:00 +02:00
|
|
|
end
|
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
if infolevel == 2 then
|
|
|
|
if #positions < 1 then
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.chat_send_player(digger,
|
|
|
|
"This area is not protected.")
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.chat_send_player(digger, "You can build here.")
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
2015-04-11 14:09:00 +02:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Can node be added or removed, if so return node else true (for protected)
|
|
|
|
|
|
|
|
protector.old_is_protected = minetest.is_protected
|
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
function minetest.is_protected(pos, digger)
|
|
|
|
|
|
|
|
if not protector.can_dig(protector.radius, pos, digger, false, 1) then
|
2015-10-09 16:13:24 +02:00
|
|
|
|
|
|
|
-- hurt player here if required
|
|
|
|
--player = minetest.get_player_by_name(digger)
|
|
|
|
--player:set_hp(player:get_hp() - 2)
|
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
return true
|
|
|
|
end
|
2015-10-09 16:13:24 +02:00
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
return protector.old_is_protected(pos, digger)
|
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
-- Make sure protection block doesn't overlap another protector's area
|
|
|
|
|
2015-10-09 16:13:24 +02:00
|
|
|
function protector.check_overlap(itemstack, placer, pointed_thing)
|
2015-07-24 17:21:53 +02:00
|
|
|
|
2015-10-09 16:13:24 +02:00
|
|
|
if pointed_thing.type ~= "node" then
|
|
|
|
return itemstack
|
|
|
|
end
|
2014-11-09 20:43:01 +01:00
|
|
|
|
2015-10-09 16:13:24 +02:00
|
|
|
if not protector.can_dig(protector.radius * 2, pointed_thing.under,
|
2015-10-22 11:34:50 +02:00
|
|
|
placer:get_player_name(), true, 3)
|
|
|
|
or not protector.can_dig(protector.radius * 2, pointed_thing.above,
|
2015-10-09 16:13:24 +02:00
|
|
|
placer:get_player_name(), true, 3) then
|
|
|
|
minetest.chat_send_player(placer:get_player_name(),
|
|
|
|
"Overlaps into above players protected area")
|
|
|
|
return
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
|
2015-10-22 11:34:50 +02:00
|
|
|
return minetest.item_place(itemstack, placer, pointed_thing)
|
2014-11-09 20:43:01 +01:00
|
|
|
|
2015-10-09 16:13:24 +02:00
|
|
|
end
|
2014-11-09 20:43:01 +01:00
|
|
|
|
|
|
|
--= Protection Block
|
|
|
|
|
|
|
|
minetest.register_node("protector:protect", {
|
|
|
|
description = "Protection Block",
|
2015-10-08 11:18:25 +02:00
|
|
|
drawtype = "nodebox",
|
2015-07-24 17:21:53 +02:00
|
|
|
tiles = {
|
|
|
|
"moreblocks_circle_stone_bricks.png",
|
|
|
|
"moreblocks_circle_stone_bricks.png",
|
|
|
|
"moreblocks_circle_stone_bricks.png^protector_logo.png"
|
2014-11-09 20:43:01 +01:00
|
|
|
},
|
2015-07-24 17:21:53 +02:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
groups = {dig_immediate = 2, unbreakable = 1},
|
2015-10-08 11:18:25 +02:00
|
|
|
is_ground_content = false,
|
2014-11-09 20:43:01 +01:00
|
|
|
paramtype = "light",
|
2015-10-08 11:18:25 +02:00
|
|
|
light_source = 4,
|
|
|
|
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5 ,-0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
}
|
|
|
|
},
|
2014-11-09 20:43:01 +01:00
|
|
|
|
2015-10-09 16:13:24 +02:00
|
|
|
on_place = protector.check_overlap,
|
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
after_place_node = function(pos, placer)
|
2015-03-02 10:03:35 +01:00
|
|
|
local meta = minetest.get_meta(pos)
|
2014-11-09 20:43:01 +01:00
|
|
|
meta:set_string("owner", placer:get_player_name() or "")
|
2015-07-24 17:21:53 +02:00
|
|
|
meta:set_string("infotext", "Protection (owned by " .. meta:get_string("owner") .. ")")
|
2014-11-09 20:43:01 +01:00
|
|
|
meta:set_string("members", "")
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_use = function(itemstack, user, pointed_thing)
|
2015-03-02 10:03:35 +01:00
|
|
|
if pointed_thing.type ~= "node" then return end
|
2015-07-24 17:21:53 +02:00
|
|
|
protector.can_dig(protector.radius, pointed_thing.under, user:get_player_name(), false, 2)
|
2014-11-09 20:43:01 +01:00
|
|
|
end,
|
|
|
|
|
|
|
|
on_rightclick = function(pos, node, clicker, itemstack)
|
2015-03-02 10:03:35 +01:00
|
|
|
local meta = minetest.get_meta(pos)
|
2015-07-24 17:21:53 +02:00
|
|
|
if protector.can_dig(1, pos,clicker:get_player_name(), true, 1) then
|
2014-11-09 20:43:01 +01:00
|
|
|
minetest.show_formspec(clicker:get_player_name(),
|
2015-07-24 17:21:53 +02:00
|
|
|
"protector:node_" .. minetest.pos_to_string(pos), protector.generate_formspec(meta))
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_punch = function(pos, node, puncher)
|
2015-07-24 17:21:53 +02:00
|
|
|
if not protector.can_dig(1, pos, puncher:get_player_name(), true, 1) then
|
2014-11-09 20:43:01 +01:00
|
|
|
return
|
|
|
|
end
|
2015-03-02 10:03:35 +01:00
|
|
|
minetest.add_entity(pos, "protector:display")
|
2014-11-09 20:43:01 +01:00
|
|
|
end,
|
2015-05-27 16:57:19 +02:00
|
|
|
|
|
|
|
can_dig = function(pos, player)
|
2015-07-24 17:21:53 +02:00
|
|
|
return protector.can_dig(1, pos, player:get_player_name(), true, 1)
|
2015-05-27 16:57:19 +02:00
|
|
|
end,
|
2014-11-09 20:43:01 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "protector:protect 4",
|
|
|
|
recipe = {
|
2015-07-24 17:21:53 +02:00
|
|
|
{"default:stone", "default:stone", "default:stone"},
|
|
|
|
{"default:stone", "default:steel_ingot", "default:stone"},
|
|
|
|
{"default:stone", "default:stone", "default:stone"},
|
2014-11-09 20:43:01 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--= Protection Logo
|
|
|
|
|
|
|
|
minetest.register_node("protector:protect2", {
|
|
|
|
description = "Protection Logo",
|
|
|
|
tiles = {"protector_logo.png"},
|
|
|
|
wield_image = "protector_logo.png",
|
|
|
|
inventory_image = "protector_logo.png",
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2015-07-24 17:21:53 +02:00
|
|
|
groups = {dig_immediate = 2, unbreakable = 1},
|
2014-11-09 20:43:01 +01:00
|
|
|
paramtype = 'light',
|
|
|
|
paramtype2 = "wallmounted",
|
2015-10-08 11:18:25 +02:00
|
|
|
light_source = 4,
|
2014-11-09 20:43:01 +01:00
|
|
|
drawtype = "nodebox",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = true,
|
|
|
|
node_box = {
|
|
|
|
type = "wallmounted",
|
|
|
|
wall_top = {-0.375, 0.4375, -0.5, 0.375, 0.5, 0.5},
|
|
|
|
wall_bottom = {-0.375, -0.5, -0.5, 0.375, -0.4375, 0.5},
|
|
|
|
wall_side = {-0.5, -0.5, -0.375, -0.4375, 0.5, 0.375},
|
|
|
|
},
|
|
|
|
selection_box = {type = "wallmounted"},
|
|
|
|
|
2015-10-09 16:13:24 +02:00
|
|
|
on_place = protector.check_overlap,
|
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
after_place_node = function(pos, placer)
|
2015-03-02 10:03:35 +01:00
|
|
|
local meta = minetest.get_meta(pos)
|
2014-11-09 20:43:01 +01:00
|
|
|
meta:set_string("owner", placer:get_player_name() or "")
|
2015-07-24 17:21:53 +02:00
|
|
|
meta:set_string("infotext", "Protection (owned by " .. meta:get_string("owner") .. ")")
|
2014-11-09 20:43:01 +01:00
|
|
|
meta:set_string("members", "")
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_use = function(itemstack, user, pointed_thing)
|
2015-03-02 10:03:35 +01:00
|
|
|
if pointed_thing.type ~= "node" then return end
|
2015-07-24 17:21:53 +02:00
|
|
|
protector.can_dig(protector.radius, pointed_thing.under, user:get_player_name(), false, 2)
|
2014-11-09 20:43:01 +01:00
|
|
|
end,
|
|
|
|
|
|
|
|
on_rightclick = function(pos, node, clicker, itemstack)
|
2015-03-02 10:03:35 +01:00
|
|
|
local meta = minetest.get_meta(pos)
|
2015-07-24 17:21:53 +02:00
|
|
|
if protector.can_dig(1, pos, clicker:get_player_name(), true, 1) then
|
2014-11-09 20:43:01 +01:00
|
|
|
minetest.show_formspec(clicker:get_player_name(),
|
2015-07-24 17:21:53 +02:00
|
|
|
"protector:node_" .. minetest.pos_to_string(pos), protector.generate_formspec(meta))
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_punch = function(pos, node, puncher)
|
2015-07-24 17:21:53 +02:00
|
|
|
if not protector.can_dig(1, pos, puncher:get_player_name(), true, 1) then
|
2014-11-09 20:43:01 +01:00
|
|
|
return
|
|
|
|
end
|
2015-03-02 10:03:35 +01:00
|
|
|
minetest.add_entity(pos, "protector:display")
|
2014-11-09 20:43:01 +01:00
|
|
|
end,
|
2015-05-27 16:57:19 +02:00
|
|
|
|
|
|
|
can_dig = function(pos, player)
|
2015-07-24 17:21:53 +02:00
|
|
|
return protector.can_dig(1, pos, player:get_player_name(), true, 1)
|
2015-05-27 16:57:19 +02:00
|
|
|
end,
|
2014-11-09 20:43:01 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "protector:protect2 4",
|
|
|
|
recipe = {
|
2015-07-24 17:21:53 +02:00
|
|
|
{"default:stone", "default:stone", "default:stone"},
|
|
|
|
{"default:stone", "default:copper_ingot", "default:stone"},
|
|
|
|
{"default:stone", "default:stone", "default:stone"},
|
2014-11-09 20:43:01 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2015-02-13 20:10:29 +01:00
|
|
|
-- If name entered or button press
|
2015-10-09 16:13:24 +02:00
|
|
|
|
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
2015-02-13 20:10:29 +01:00
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
if string.sub(formname, 0, string.len("protector:node_")) == "protector:node_" then
|
2015-02-13 20:10:29 +01:00
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
local pos_s = string.sub(formname, string.len("protector:node_") + 1)
|
2014-11-09 20:43:01 +01:00
|
|
|
local pos = minetest.string_to_pos(pos_s)
|
2015-03-02 10:03:35 +01:00
|
|
|
local meta = minetest.get_meta(pos)
|
2014-11-09 20:43:01 +01:00
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
if not protector.can_dig(1, pos, player:get_player_name(), true, 1) then
|
2014-11-09 20:43:01 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if fields.protector_add_member then
|
|
|
|
for _, i in ipairs(fields.protector_add_member:split(" ")) do
|
2015-07-24 17:21:53 +02:00
|
|
|
protector.add_member(meta, i)
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
for field, value in pairs(fields) do
|
2015-07-24 17:21:53 +02:00
|
|
|
if string.sub(field, 0, string.len("protector_del_member_")) == "protector_del_member_" then
|
|
|
|
protector.del_member(meta, string.sub(field,string.len("protector_del_member_") + 1))
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end
|
2015-02-13 20:10:29 +01:00
|
|
|
|
|
|
|
if not fields.close_me then
|
|
|
|
minetest.show_formspec(player:get_player_name(), formname, protector.generate_formspec(meta))
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
2015-02-13 20:10:29 +01:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
2015-02-13 20:10:29 +01:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
end)
|
|
|
|
|
2015-10-09 16:13:24 +02:00
|
|
|
-- Display entity shown when protector node is punched
|
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
minetest.register_entity("protector:display", {
|
|
|
|
physical = false,
|
2015-07-24 17:21:53 +02:00
|
|
|
collisionbox = {0, 0, 0, 0, 0, 0},
|
2014-11-09 20:43:01 +01:00
|
|
|
visual = "wielditem",
|
2015-07-24 17:21:53 +02:00
|
|
|
-- wielditem seems to be scaled to 1.5 times original node size
|
|
|
|
visual_size = {x = 1.0 / 1.5, y = 1.0 / 1.5},
|
2014-11-09 20:43:01 +01:00
|
|
|
textures = {"protector:display_node"},
|
2015-10-08 11:18:25 +02:00
|
|
|
timer = 0,
|
2015-08-27 10:42:27 +02:00
|
|
|
on_activate = function(self, staticdata)
|
2015-10-08 11:18:25 +02:00
|
|
|
if mobs and mobs.entity and mobs.entity == false then
|
|
|
|
self.object:remove()
|
|
|
|
end
|
2015-08-27 10:42:27 +02:00
|
|
|
end,
|
2014-11-09 20:43:01 +01:00
|
|
|
on_step = function(self, dtime)
|
2015-10-08 11:18:25 +02:00
|
|
|
self.timer = self.timer + dtime
|
|
|
|
if self.timer > 5 then
|
2014-11-09 20:43:01 +01:00
|
|
|
self.object:remove()
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
-- Display-zone node, Do NOT place the display as a node,
|
|
|
|
-- it is made to be used as an entity (see above)
|
2015-10-09 16:13:24 +02:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
local x = protector.radius
|
|
|
|
minetest.register_node("protector:display_node", {
|
|
|
|
tiles = {"protector_display.png"},
|
|
|
|
use_texture_alpha = true,
|
|
|
|
walkable = false,
|
|
|
|
drawtype = "nodebox",
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
-- sides
|
|
|
|
{-(x+.55), -(x+.55), -(x+.55), -(x+.45), (x+.55), (x+.55)},
|
|
|
|
{-(x+.55), -(x+.55), (x+.45), (x+.55), (x+.55), (x+.55)},
|
|
|
|
{(x+.45), -(x+.55), -(x+.55), (x+.55), (x+.55), (x+.55)},
|
|
|
|
{-(x+.55), -(x+.55), -(x+.55), (x+.55), (x+.55), -(x+.45)},
|
|
|
|
-- top
|
|
|
|
{-(x+.55), (x+.45), -(x+.55), (x+.55), (x+.55), (x+.55)},
|
|
|
|
-- bottom
|
|
|
|
{-(x+.55), -(x+.55), -(x+.55), (x+.55), -(x+.45), (x+.55)},
|
|
|
|
-- middle (surround protector)
|
|
|
|
{-.55,-.55,-.55, .55,.55,.55},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "regular",
|
|
|
|
},
|
|
|
|
paramtype = "light",
|
2015-07-24 17:21:53 +02:00
|
|
|
groups = {dig_immediate = 3, not_in_creative_inventory = 1},
|
2014-11-09 20:43:01 +01:00
|
|
|
drop = "",
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Register Protected Doors
|
|
|
|
|
|
|
|
local function on_rightclick(pos, dir, check_name, replace, replace_dir, params)
|
|
|
|
pos.y = pos.y+dir
|
|
|
|
if not minetest.get_node(pos).name == check_name then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local p2 = minetest.get_node(pos).param2
|
2015-07-24 17:21:53 +02:00
|
|
|
p2 = params[p2 + 1]
|
2015-10-09 16:13:24 +02:00
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.swap_node(pos, {name = replace_dir, param2 = p2})
|
2015-10-09 16:13:24 +02:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
pos.y = pos.y-dir
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.swap_node(pos, {name = replace, param2 = p2})
|
2014-11-09 20:43:01 +01:00
|
|
|
|
2015-04-01 12:13:07 +02:00
|
|
|
local snd_1 = "doors_door_close"
|
|
|
|
local snd_2 = "doors_door_open"
|
2014-11-09 20:43:01 +01:00
|
|
|
if params[1] == 3 then
|
2015-04-01 12:13:07 +02:00
|
|
|
snd_1 = "doors_door_open"
|
|
|
|
snd_2 = "doors_door_close"
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
if minetest.get_meta(pos):get_int("right") ~= 0 then
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.sound_play(snd_1, {
|
|
|
|
pos = pos, gain = 0.3, max_hear_distance = 10})
|
2014-11-09 20:43:01 +01:00
|
|
|
else
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.sound_play(snd_2, {
|
|
|
|
pos = pos, gain = 0.3, max_hear_distance = 10})
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Protected Wooden Door
|
|
|
|
|
|
|
|
local name = "protector:door_wood"
|
|
|
|
|
|
|
|
doors.register_door(name, {
|
|
|
|
description = "Protected Wooden Door",
|
2015-04-01 12:13:07 +02:00
|
|
|
inventory_image = "doors_wood.png^protector_logo.png",
|
2015-07-24 17:21:53 +02:00
|
|
|
groups = {
|
|
|
|
snappy = 1, choppy = 2, oddly_breakable_by_hand = 2,
|
|
|
|
door = 1, unbreakable = 1
|
|
|
|
},
|
2015-04-01 12:13:07 +02:00
|
|
|
tiles_bottom = {"doors_wood_b.png^protector_logo.png", "doors_brown.png"},
|
|
|
|
tiles_top = {"doors_wood_a.png", "doors_brown.png"},
|
2014-11-09 20:43:01 +01:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
sunlight = false,
|
|
|
|
})
|
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.override_item(name .. "_b_1", {
|
2014-11-09 20:43:01 +01:00
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if not minetest.is_protected(pos, clicker:get_player_name()) then
|
2015-07-24 17:21:53 +02:00
|
|
|
on_rightclick(pos, 1,
|
|
|
|
name .. "_t_1", name .. "_b_2", name .. "_t_2", {1, 2, 3, 0})
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item(name.."_t_1", {
|
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if not minetest.is_protected(pos, clicker:get_player_name()) then
|
2015-07-24 17:21:53 +02:00
|
|
|
on_rightclick(pos, -1,
|
|
|
|
name .. "_b_1", name .. "_t_2", name .. "_b_2", {1, 2, 3, 0})
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item(name.."_b_2", {
|
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if not minetest.is_protected(pos, clicker:get_player_name()) then
|
2015-07-24 17:21:53 +02:00
|
|
|
on_rightclick(pos, 1,
|
|
|
|
name .. "_t_2", name .. "_b_1", name .. "_t_1", {3, 0, 1, 2})
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item(name.."_t_2", {
|
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if not minetest.is_protected(pos, clicker:get_player_name()) then
|
2015-07-24 17:21:53 +02:00
|
|
|
on_rightclick(pos, -1,
|
|
|
|
name .. "_b_2", name .. "_t_1", name .. "_b_1", {3, 0, 1, 2})
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = name,
|
|
|
|
recipe = {
|
|
|
|
{"group:wood", "group:wood"},
|
|
|
|
{"group:wood", "default:copper_ingot"},
|
|
|
|
{"group:wood", "group:wood"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = name,
|
|
|
|
recipe = {
|
|
|
|
{"doors:door_wood", "default:copper_ingot"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Protected Steel Door
|
|
|
|
|
|
|
|
local name = "protector:door_steel"
|
|
|
|
|
|
|
|
doors.register_door(name, {
|
|
|
|
description = "Protected Steel Door",
|
2015-04-01 12:13:07 +02:00
|
|
|
inventory_image = "doors_steel.png^protector_logo.png",
|
2015-07-24 17:21:53 +02:00
|
|
|
groups = {
|
|
|
|
snappy = 1, bendy = 2, cracky = 1,
|
|
|
|
level = 2, door = 1, unbreakable = 1
|
|
|
|
},
|
2015-04-01 12:13:07 +02:00
|
|
|
tiles_bottom = {"doors_steel_b.png^protector_logo.png", "doors_grey.png"},
|
|
|
|
tiles_top = {"doors_steel_a.png", "doors_grey.png"},
|
2014-11-09 20:43:01 +01:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
sunlight = false,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item(name.."_b_1", {
|
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if not minetest.is_protected(pos, clicker:get_player_name()) then
|
2015-07-24 17:21:53 +02:00
|
|
|
on_rightclick(pos, 1,
|
|
|
|
name .. "_t_1", name .. "_b_2", name .. "_t_2", {1, 2, 3, 0})
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item(name.."_t_1", {
|
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if not minetest.is_protected(pos, clicker:get_player_name()) then
|
2015-07-24 17:21:53 +02:00
|
|
|
on_rightclick(pos, -1,
|
|
|
|
name .. "_b_1", name .. "_t_2", name .. "_b_2", {1, 2, 3, 0})
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item(name.."_b_2", {
|
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if not minetest.is_protected(pos, clicker:get_player_name()) then
|
2015-07-24 17:21:53 +02:00
|
|
|
on_rightclick(pos, 1,
|
|
|
|
name .. "_t_2", name .. "_b_1", name .. "_t_1", {3, 0, 1, 2})
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.override_item(name.."_t_2", {
|
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if not minetest.is_protected(pos, clicker:get_player_name()) then
|
2015-07-24 17:21:53 +02:00
|
|
|
on_rightclick(pos, -1,
|
|
|
|
name .. "_b_2", name .. "_t_1", name .. "_b_1", {3, 0, 1, 2})
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = name,
|
|
|
|
recipe = {
|
|
|
|
{"default:steel_ingot", "default:steel_ingot"},
|
|
|
|
{"default:steel_ingot", "default:copper_ingot"},
|
|
|
|
{"default:steel_ingot", "default:steel_ingot"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = name,
|
|
|
|
recipe = {
|
|
|
|
{"doors:door_steel", "default:copper_ingot"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Protected Chest
|
2015-02-13 20:10:29 +01:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
minetest.register_node("protector:chest", {
|
|
|
|
description = "Protected Chest",
|
2015-07-24 17:21:53 +02:00
|
|
|
tiles = {
|
|
|
|
"default_chest_top.png", "default_chest_top.png",
|
|
|
|
"default_chest_side.png", "default_chest_side.png",
|
|
|
|
"default_chest_side.png", "default_chest_front.png^protector_logo.png"
|
|
|
|
},
|
2014-11-09 20:43:01 +01:00
|
|
|
paramtype2 = "facedir",
|
2015-07-24 17:21:53 +02:00
|
|
|
groups = {choppy = 2, oddly_breakable_by_hand = 2, unbreakable = 1},
|
2014-11-09 20:43:01 +01:00
|
|
|
legacy_facedir_simple = true,
|
|
|
|
is_ground_content = false,
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2015-07-24 17:21:53 +02:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
on_construct = function(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
meta:set_string("infotext", "Protected Chest")
|
2015-04-01 12:13:07 +02:00
|
|
|
meta:set_string("name", "")
|
2014-11-09 20:43:01 +01:00
|
|
|
local inv = meta:get_inventory()
|
2015-07-24 17:21:53 +02:00
|
|
|
inv:set_size("main", 8 * 4)
|
2014-11-09 20:43:01 +01:00
|
|
|
end,
|
2015-07-24 17:21:53 +02:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
can_dig = function(pos,player)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
if inv:is_empty("main") then
|
|
|
|
if not minetest.is_protected(pos, player:get_player_name()) then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
2015-07-24 17:21:53 +02:00
|
|
|
|
|
|
|
on_metadata_inventory_put = function(pos, listname, index, stack, player)
|
|
|
|
minetest.log("action", player:get_player_name() ..
|
|
|
|
" moves stuff to protected chest at " .. minetest.pos_to_string(pos))
|
2014-11-09 20:43:01 +01:00
|
|
|
end,
|
2015-07-24 17:21:53 +02:00
|
|
|
|
|
|
|
on_metadata_inventory_take = function(pos, listname, index, stack, player)
|
|
|
|
minetest.log("action", player:get_player_name() ..
|
|
|
|
" takes stuff from protected chest at " .. minetest.pos_to_string(pos))
|
2014-11-09 20:43:01 +01:00
|
|
|
end,
|
2015-07-24 17:21:53 +02:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
|
|
if not minetest.is_protected(pos, clicker:get_player_name()) then
|
2015-07-24 17:21:53 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
2015-04-01 12:13:07 +02:00
|
|
|
local spos = pos.x .. "," .. pos.y .. "," ..pos.z
|
|
|
|
local formspec = "size[8,9]"..
|
2015-07-24 17:21:53 +02:00
|
|
|
default.gui_bg..default.gui_bg_img..default.gui_slots
|
|
|
|
.. "list[nodemeta:".. spos .. ";main;0,0.3;8,4;]"
|
|
|
|
.. "button[0,4.5;2,0.25;toup;To Chest]"
|
|
|
|
.. "field[2.3,4.8;4,0.25;chestname;;"
|
|
|
|
.. meta:get_string("name") .. "]"
|
|
|
|
.. "button[6,4.5;2,0.25;todn;To Inventory]"
|
|
|
|
.. "list[current_player;main;0,5;8,1;]"
|
|
|
|
.. "list[current_player;main;0,6.08;8,3;8]"
|
2015-08-31 12:05:55 +02:00
|
|
|
.. "listring[nodemeta:" .. spos .. ";main]"
|
|
|
|
.. "listring[current_player;main]"
|
2015-07-24 17:21:53 +02:00
|
|
|
.. default.get_hotbar_bg(0,5)
|
2015-04-01 12:13:07 +02:00
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
minetest.show_formspec(
|
|
|
|
clicker:get_player_name(),
|
2015-07-24 17:21:53 +02:00
|
|
|
"protector:chest_" .. minetest.pos_to_string(pos),
|
|
|
|
formspec)
|
2014-11-09 20:43:01 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2015-03-02 10:03:35 +01:00
|
|
|
-- Protected Chest formspec buttons
|
2015-02-13 20:10:29 +01:00
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
2015-02-13 20:10:29 +01:00
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
if string.sub(formname, 0, string.len("protector:chest_")) == "protector:chest_" then
|
2015-02-13 20:10:29 +01:00
|
|
|
|
2015-07-24 17:21:53 +02:00
|
|
|
local pos_s = string.sub(formname,string.len("protector:chest_") + 1)
|
2015-02-13 20:10:29 +01:00
|
|
|
local pos = minetest.string_to_pos(pos_s)
|
2015-03-02 10:03:35 +01:00
|
|
|
local meta = minetest.get_meta(pos)
|
2015-02-13 20:10:29 +01:00
|
|
|
local chest_inv = meta:get_inventory()
|
|
|
|
local player_inv = player:get_inventory()
|
|
|
|
|
|
|
|
if fields.toup then
|
|
|
|
|
|
|
|
-- copy contents of players inventory to chest
|
2015-07-24 17:21:53 +02:00
|
|
|
for i, v in ipairs (player_inv:get_list("main") or {}) do
|
|
|
|
if (chest_inv and chest_inv:room_for_item('main', v)) then
|
|
|
|
local leftover = chest_inv:add_item('main', v)
|
|
|
|
player_inv:remove_item("main", v)
|
|
|
|
if (leftover and not(leftover:is_empty())) then
|
|
|
|
player_inv:add_item("main", v)
|
2015-02-13 20:10:29 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
elseif fields.todn then
|
|
|
|
|
|
|
|
-- copy contents of chest to players inventory
|
2015-07-24 17:21:53 +02:00
|
|
|
for i, v in ipairs (chest_inv:get_list('main') or {}) do
|
|
|
|
if (player_inv:room_for_item("main", v)) then
|
|
|
|
local leftover = player_inv:add_item("main", v)
|
|
|
|
chest_inv:remove_item('main', v)
|
|
|
|
if( leftover and not(leftover:is_empty())) then
|
|
|
|
chest_inv:add_item('main', v)
|
2015-02-13 20:10:29 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
elseif fields.chestname then
|
|
|
|
|
|
|
|
-- change chest infotext to display name
|
|
|
|
if fields.chestname ~= "" then
|
2015-04-01 12:13:07 +02:00
|
|
|
meta:set_string("name", fields.chestname)
|
2015-07-24 17:21:53 +02:00
|
|
|
meta:set_string("infotext",
|
|
|
|
"Protected Chest (" .. fields.chestname .. ")")
|
2015-02-13 20:10:29 +01:00
|
|
|
else
|
|
|
|
meta:set_string("infotext", "Protected Chest")
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- Protected Chest recipe
|
|
|
|
|
2014-11-09 20:43:01 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = 'protector:chest',
|
|
|
|
recipe = {
|
|
|
|
{'group:wood', 'group:wood', 'group:wood'},
|
|
|
|
{'group:wood', 'default:copper_ingot', 'group:wood'},
|
|
|
|
{'group:wood', 'group:wood', 'group:wood'},
|
|
|
|
}
|
|
|
|
})
|
2015-02-13 20:10:29 +01:00
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'protector:chest',
|
|
|
|
recipe = {
|
|
|
|
{'default:chest', 'default:copper_ingot', ''},
|
|
|
|
}
|
2015-08-19 09:51:42 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- Disable PVP in your own protected areas
|
2015-08-31 12:23:34 +02:00
|
|
|
if minetest.setting_getbool("enable_pvp") and protector.pvp then
|
2015-08-19 09:51:42 +02:00
|
|
|
|
|
|
|
if minetest.register_on_punchplayer then
|
|
|
|
|
|
|
|
minetest.register_on_punchplayer(
|
|
|
|
function(player, hitter, time_from_last_punch, tool_capabilities, dir, damage)
|
|
|
|
|
|
|
|
if not player or not hitter then
|
2015-08-31 12:23:34 +02:00
|
|
|
print("[Protector] on_punchplayer called with nil objects")
|
2015-08-19 09:51:42 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
if not hitter:is_player() then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2015-08-19 12:34:19 +02:00
|
|
|
-- no pvp at spawn area
|
|
|
|
local pos = player:getpos()
|
|
|
|
if pos.x < statspawn.x + protector.spawn
|
|
|
|
and pos.x > statspawn.x - protector.spawn
|
|
|
|
and pos.y < statspawn.y + protector.spawn
|
|
|
|
and pos.y > statspawn.y - protector.spawn
|
|
|
|
and pos.z < statspawn.z + protector.spawn
|
|
|
|
and pos.z > statspawn.z - protector.spawn then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
if minetest.is_protected(pos, hitter:get_player_name()) then
|
2015-08-19 09:51:42 +02:00
|
|
|
return true
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
end)
|
|
|
|
else
|
2015-08-31 12:23:34 +02:00
|
|
|
print("[Protector] pvp_protect not active, update your version of Minetest")
|
2015-08-19 09:51:42 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
else
|
2015-08-31 12:23:34 +02:00
|
|
|
print("[Protector] pvp_protect is disabled")
|
|
|
|
end
|
|
|
|
|
2015-10-22 11:34:50 +02:00
|
|
|
print ("[MOD] Protector Redo loaded")
|