2015-02-13 21:43:24 +01:00
|
|
|
returnmirror = {}
|
|
|
|
returnmirror.cost = 100
|
|
|
|
|
|
|
|
minetest.register_tool("returnmirror:returnmirror", {
|
|
|
|
description = "Mirror of Returning",
|
|
|
|
stack_max = 1,
|
|
|
|
inventory_image = "returnmirror_returnmirror.png",
|
|
|
|
wield_image = "returnmirror_returnmirror.png",
|
|
|
|
tool_capabilities = {},
|
|
|
|
on_use = function(itemstack, user, pointed_thing)
|
2015-02-13 23:07:54 +01:00
|
|
|
local pos_string = itemstack:get_metadata()
|
|
|
|
local pos = minetest.string_to_pos(pos_string)
|
|
|
|
if pos ~= nil then
|
|
|
|
if mana.subtract(user:get_player_name(), returnmirror.cost) then
|
|
|
|
user:setpos(pos)
|
|
|
|
end
|
2015-02-13 21:43:24 +01:00
|
|
|
end
|
|
|
|
end,
|
2015-02-13 23:07:54 +01:00
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
itemstack:set_metadata(minetest.pos_to_string(placer:getpos()))
|
|
|
|
return itemstack
|
|
|
|
end
|
2015-02-13 21:43:24 +01:00
|
|
|
})
|