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-29 03:32:29 +02:00
|
|
|
local spawn_chance = tonumber(minetest.settings:get("sneeker.spawn_chance")) or 18000
|
|
|
|
local spawn_interval = tonumber(minetest.settings:get("sneeker.spawn_interval")) or time_min * 40 -- Default interval is 40 minutes
|
2017-05-28 04:13:47 +02:00
|
|
|
|
2017-05-28 04:15:23 +02:00
|
|
|
if minetest.settings:get_bool("log_mods", false) then
|
2017-05-28 04:54:26 +02:00
|
|
|
sneeker.log("Spawn chance: " .. tostring(spawn_chance) .. " (1/" .. tostring(spawn_chance) .. ")")
|
|
|
|
sneeker.log("Spawn interval: " .. tostring(spawn_interval) .. " (" .. tostring(spawn_interval/60) .. " minutes)")
|
2017-05-28 04:15:23 +02:00
|
|
|
end
|
|
|
|
|
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 04:54:26 +02:00
|
|
|
minetest.add_entity(pos,"sneeker:sneeker")
|
2017-05-13 12:35:54 +02:00
|
|
|
end
|
|
|
|
})
|