Posted 24 September 2012 - 05:55 PM
Can someone help me make a program for a framequarry (RP2)?
So that the quarry stops at a certain height, goes back up and moves on to make a new hole.
This is what a got so far:
local y = 74
while y > 8 do
if rs.getInput("front") then
y = y - 1
print(y)
sleep(5)
end
end
Thank you !
So that the quarry stops at a certain height, goes back up and moves on to make a new hole.
This is what a got so far:
local y = 74
while y > 8 do
if rs.getInput("front") then
y = y - 1
print(y)
sleep(5)
end
end
Thank you !