Is there a replacement for the block breaker and deployer in 1.5.x? I am trying to rebuild dire's mining well machine with this mod. http://forums.technicpack.net/threads/1-5-x-redstone-in-motion-redpower-frames-1-2-0-0-july-7.47048/
Code:
while true do
if redstone.getInput("placesidehere") then
if turtle.place() == false && turtle.detect() == false then
i = i + 1
turtle.select(i)
end
end
end
make placesidehere which side the redstone signal is coming from
this shooooould work
while true do
if redstone.getInput("side") thenif turtle.detectDown() then -- is called if the mining well is beneath the turtleturtle.digDown()else -- is called if there is nothing beneath the turtleturtle.placeDown()endendlocal event = os.pullEvent("redstone")end
Uhh... this isn't Java . Use "and" over "&&".