Likwid H-Craft wrote:This Mod is by dj22 he asked me if I can upload so I did for him :)
To dj22
What is the mod called so I can change the title.
Download:
https://www.filesanywhere.com/fs/v.aspx?v=8b6969885e666f76af6e
I think it is a Cool mod :)
dj22 wrote:what
dj22 wrote:the mod makes a perfect hole diagnaly adds light stairs on the boddom of the hole and adds stone to collect when it mines stone i recomend useing drop item mod so u can collect stone easly
var = "mydata"
OR (preferrably)
local var ="mydata"
var
local var = 1
if var <= 3 then
minetest.chat_send_all("Variable at ("..tostring(var)..") is less than 3!")
end
local var ="ironminer:block1"
local touch ="default:stone"
minetest.register_node("ironminer:button4", {
drawtype = "glasslike",
tiles = {"light.png"},
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = {cracky=3},
description="iron miner",
on_construct = function(pos)
end,
})
minetest.register_abm(
{nodenames = {"ironminer:button4"},
{name="default:stone_with_coal","default:stone_with_iron"},
interval = 1,
chance = 20,
action = function(pos)
pos.y=pos.y-1
minetest.env:add_node(pos, {name="ironminer:block1"})
end,
})
minetest.register_abm(
{nodenames = {"ironminer:block1"},
interval = 1,
chance = 2,
action = function(pos)
minetest.env:remove_node(pos, {name="ironminer:block1"})
end,
})
minetest.register_abm(
{nodenames = {"ironminer:block1"},
interval = 1,
chance = 1,
action = function(pos)
pos.y=pos.y-1
minetest.env:add_node(pos, {name="ironminer:block1"})
end,
})
minetest.register_node("ironminer:block1", {
drawtype = "glasslike",
tiles = {"sprite0.png"},
burntime=1,
paramtype = "light",
paramtype2 = "wallmounted",
light_source = 20,
walkable = true,
groups = {cracky=3},
description="mine blocks",
on_construct=function(pos, node)
if local touch=true then
pos.y=pos.y-1
minetest.env:remove_node(pos, {name="default:stone"})
pos.y=pos.y+80
minetest.env:add_item(pos,{name="default:cobble"})
end
end,
})
minetest.register_craft({
output = 'ironminer:button4 16',
recipe = {
{'default:wood', 'default:wood', 'default:wood'},
{'default:wood', 'default:torch', 'default:wood'},
{'default:wood', 'default:torch', 'default:wood'},
}
})dj22 wrote:how do u suck droped items in to nodes inventory like how do u make a chest add items around it
Likwid H-Craft wrote:This Mod is by dj22 he asked me if I can upload so I did for him :)
To dj22
What is the mod called so I can change the title.
Download: https://www.filesanywhere.com/fs/v.aspx?v=8b69698a596275bdab6a
I think it is a Cool mod :)
Likwid H-Craft wrote:This Mod is by dj22 he asked me if I can upload so I did for him :)
To dj22
What is the mod called so I can change the title.
Download: https://dl.dropbox.com/s/5q72cbntyi3bryk/ultra%20ore%20miner.zip?token_hash=AAHtkgHVMe2XVRvBlROFPNXa5X1XNefA3m68ztUPaMxW-A&dl=1
I think it is a Cool mod :)
Users browsing this forum: No registered users and 27 guests