Lua in ComputerCraft 1.5
This seems to work but the recursive loops is breaking after 4 or 5 times running.
Cannot seem to see why.
Am i doing something incredibly wrong here? Full Code
Snippet for the loop:
x = 1
function loop()
if x > 0 then
getTarg()
derp1()
sleep(2.9)
monInit()
loop()
end
end
loop()