Advertisement
icdb

[ComputerCraft] Path finder

May 23rd, 2014
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.17 KB | None | 0 0
  1. while true do
  2. turtle.turnRight()
  3.   if turtle.detect() then
  4.     turtle.turnLeft()
  5.     if turtle.detect() then
  6.       turtle.turnLeft()
  7.     end
  8.   end
  9. turtle.forward()
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement