From a96edfbbbec85c3219046c37af50d0af3017522a Mon Sep 17 00:00:00 2001 From: Brandon Date: Sat, 17 Aug 2013 22:27:13 -0500 Subject: door blue texture, add unlocked sign --- init.lua | 47 +++++++++++++++++++++++++++++++++++++++++++++-- textures/door_blue.png | Bin 0 -> 152 bytes 2 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 textures/door_blue.png diff --git a/init.lua b/init.lua index a63beb6..653273e 100644 --- a/init.lua +++ b/init.lua @@ -363,8 +363,51 @@ end -- End of fix ---landrush.register_claimnode("landclaim", "landrush_landclaim.png") ---landrush.register_claimnode("landclaim_b", "landrush_landclaim.png") +-- create a new type of sign that is not protected by landrush mod +minetest.register_node("landrush:unlocked_sign", { + description = "Unprotected Sign", + drawtype = "signlike", + tiles = {"default_sign_wall.png"}, + inventory_image = "default_sign_wall.png", + wield_image = "default_sign_wall.png", + paramtype = "light", + paramtype2 = "wallmounted", + sunlight_propagates = true, + walkable = false, + selection_box = { + type = "wallmounted", + --wall_top = + --wall_bottom = + --wall_side = + }, + groups = {choppy=2,dig_immediate=2,attached_node=1}, + legacy_wallmounted = true, + sounds = default.node_sound_defaults(), + on_construct = function(pos) + --local n = minetest.get_node(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", "field[text;;${text}]") + meta:set_string("infotext", "\"\"") + end, + on_receive_fields = function(pos, formname, fields, sender) + local meta = minetest.get_meta(pos) + fields.text = fields.text or "" + print((sender:get_player_name() or "").." wrote \""..fields.text.. + "\" to sign at "..minetest.pos_to_string(pos)) + meta:set_string("text", fields.text) + meta:set_string("infotext", '"'..fields.text..'"') + end, +}) + + +minetest.register_craft({ + output = 'landrush:unlocked_sign', + recipe = { + {'default:wood','default:wood','default:wood'}, + {'default:wood','default:wood','landrush:landclaim'}, + {'','default:stick',''} + } +}) minetest.register_entity("landrush:showarea",{ on_activate = function(self, staticdata, dtime_s) diff --git a/textures/door_blue.png b/textures/door_blue.png new file mode 100644 index 0000000..ab3d8aa Binary files /dev/null and b/textures/door_blue.png differ -- cgit v1.2.3 From c1dc168ba35706f160a15dc42a1702ea1b0f57c8 Mon Sep 17 00:00:00 2001 From: Brandon Date: Sat, 17 Aug 2013 22:29:13 -0500 Subject: adjust craft recipe to craft 6 signs at once --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 653273e..8da41fa 100644 --- a/init.lua +++ b/init.lua @@ -401,7 +401,7 @@ minetest.register_node("landrush:unlocked_sign", { minetest.register_craft({ - output = 'landrush:unlocked_sign', + output = 'landrush:unlocked_sign 6', recipe = { {'default:wood','default:wood','default:wood'}, {'default:wood','default:wood','landrush:landclaim'}, -- cgit v1.2.3 From a961e4305b02eea11f01e3acf068a42db57018c5 Mon Sep 17 00:00:00 2001 From: Brandon Date: Tue, 20 Aug 2013 23:27:24 -0500 Subject: can't claim below -200 --- init.lua | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 156cbe7..8b58cb4 100644 --- a/init.lua +++ b/init.lua @@ -78,7 +78,7 @@ function landrush.get_chunk(pos) local y = 0 if ( pos.y < -200 ) then - y = -32000 + y = - 32000 elseif ( pos.y < -60 ) then y = -200 elseif ( pos.y < 140 ) then @@ -96,7 +96,9 @@ function landrush.get_chunk_center(pos) local x = math.floor(pos.x/chunkSize)*chunkSize+7.5 local y = 0 - if ( pos.y < -60 ) then + if ( pos.y < -200 ) then + y = - 32000 + elseif ( pos.y < -60 ) then y = -200 elseif ( pos.y < 120 ) then y = -30 @@ -117,6 +119,10 @@ end function landrush.can_interact(name, pos) + if ( pos.y < -200 ) then + return true + end + if ( minetest.check_player_privs(name, {landrush=true}) ) then return true end @@ -300,6 +306,12 @@ landrush.load_claims() on_place = function(itemstack, placer, pointed_thing) owner = landrush.get_owner(pointed_thing.above) player = placer:get_player_name() + + if ( pointed_thing.above.y < -200 ) then + minetest.chat_send_player(player,"You cannot claim below -200") + return itemstack + end + if owner then minetest.chat_send_player(player, "This area is already owned by "..owner) else -- cgit v1.2.3 From 2f208687d7f56af0056a9b5bb1d24360d1e619df Mon Sep 17 00:00:00 2001 From: Brandon Date: Fri, 23 Aug 2013 21:31:41 -0500 Subject: add userunclaim command to unclaim all areas owned by a particular user --- chatcommands.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/chatcommands.lua b/chatcommands.lua index d0df825..d452b63 100644 --- a/chatcommands.lua +++ b/chatcommands.lua @@ -15,6 +15,23 @@ minetest.register_chatcommand("landowner", { end, }) +minetest.register_chatcommand("userunclaim", { + params = "player", + privs = {landrush=true}, + description = "Unclaims all of a players areas", + func = function(name, param) + qdone = 0 + for k,v in pairs(claims) do + if claims[k].owner == param then + claims[k] = nil + qdone = qdone + 1 + end + end + landrush.save_claims() + minetest.chat_send_player(name,tostring(qdone).." claims unclaims for "..param) + end +}) + minetest.register_chatcommand("unclaim", { params = "", description = "unclaims the current map chunk", -- cgit v1.2.3