2017-05-28 02:36:45 +02:00
|
|
|
-- Original code by Rui: WTFPL
|
|
|
|
|
2017-05-13 12:45:04 +02:00
|
|
|
|
2017-05-28 04:07:41 +02:00
|
|
|
local time_min = 60
|
2017-05-13 12:45:04 +02:00
|
|
|
local time_hr = time_min * 60
|
|
|
|
local time_day = time_hr * 24
|
|
|
|
|
2017-05-28 04:13:47 +02:00
|
|
|
local spawn_chance = tonumber(minetest.settings:get("sneaker_spawn_chance")) or 18000
|
|
|
|
local spawn_interval = tonumber(minetest.settings:get("sneaker_spawn_interval")) or time_min * 40 -- Default interval is 40 minutes
|
|
|
|
|
2017-05-13 12:35:54 +02:00
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"default:dirt_with_grass","default:stone"},
|
|
|
|
neighbors = {"air"},
|
2017-05-28 04:13:47 +02:00
|
|
|
interval = spawn_interval,
|
|
|
|
chance = spawn_chance,
|
2017-05-13 12:35:54 +02:00
|
|
|
action = function(pos, node, _, active_object_count_wider)
|
|
|
|
if active_object_count_wider > 5 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
pos.y = pos.y+1
|
|
|
|
if not minetest.get_node_light(pos) then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if minetest.get_node_light(pos) > 5 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if minetest.get_node_light(pos) < -1 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if pos.y > 31000 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if minetest.get_node(pos).name ~= "air" then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
pos.y = pos.y+1
|
|
|
|
if minetest.get_node(pos).name ~= "air" then
|
|
|
|
return
|
|
|
|
end
|
2017-05-28 02:23:59 +02:00
|
|
|
minetest.add_entity(pos,"sneaker:sneaker")
|
2017-05-13 12:35:54 +02:00
|
|
|
end
|
|
|
|
})
|