43 lines
1.3 KiB
Lua
43 lines
1.3 KiB
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local math, minetest, nodecore
|
|
= math, minetest, nodecore
|
|
local math_random
|
|
= math.random
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
minetest.register_chatcommand("stuck", {
|
|
description = "Teleport to get unstuck (but you can't bring your items)",
|
|
func = function(pname)
|
|
local player = minetest.get_player_by_name(pname)
|
|
if not player then return end
|
|
|
|
local pos = player:get_pos()
|
|
local node = minetest.get_node(pos)
|
|
if node.name == "air" or node.name == "ignore" then
|
|
pos.y = pos.y - 1
|
|
local node = minetest.get_node(pos)
|
|
if node.name == "air" or node.name == "ignore" then
|
|
return false, "cannot /stuck while airborne"
|
|
end
|
|
pos.y = pos.y + 1
|
|
end
|
|
|
|
local inv = player:get_inventory()
|
|
for i = 1, inv:get_size("main") do
|
|
local stack = inv:get_stack("main", i)
|
|
local def = minetest.registered_items[stack:get_name()]
|
|
if def and not def.virtual_item then
|
|
nodecore.item_eject(pos, stack, 5)
|
|
end
|
|
end
|
|
inv:set_list("main", {})
|
|
|
|
nodecore.setphealth(player, 0)
|
|
|
|
pos.x = pos.x + math_random() * 64 - 32
|
|
pos.y = pos.y + math_random() * 64
|
|
pos.z = pos.z + math_random() * 64 - 32
|
|
player:set_pos(pos)
|
|
end
|
|
})
|