Advertisement
Guest User

pet

a guest
Nov 5th, 2012
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.99 KB | None | 0 0
  1. function forward(n)
  2.   for i=1,n do
  3.     if not turtle.detectDown() then
  4.       turtle.down()
  5.     end
  6.     if not turtle.forward() then
  7.       if not turtle.detectDown() then
  8.         turtle.down()
  9.       end
  10.       if not turtle.up() then
  11.         break
  12.       end
  13.       if not turtle.forward() then
  14.         turtle.down()
  15.         break
  16.       end
  17.     end
  18.     if not turtle.detectDown() then
  19.       turtle.down()
  20.     end
  21.   end
  22. end
  23. function right(n)
  24.   turtle.turnRight()
  25.   forward(n)
  26. end
  27. function left(n)
  28.   turtle.turnLeft()
  29.   forward(n)
  30. end
  31. function back(n)
  32.   turtle.turnRight()
  33.   turtle.turnRight()
  34.   forward(n)
  35. end
  36. local L=0
  37. while L==0 do
  38.   dir=math.random(1,4)
  39.   n=math.random(1,4)
  40.   if dir==1 then
  41.     forward(n)
  42.   end
  43.   if dir==2 then
  44.     right(n)
  45.   end
  46.   if dir==3 then
  47.     back(n)
  48.   end
  49.   if dir==3 then
  50.     left(n)
  51.   end
  52.   if turtle.getFuelLevel()<100 then
  53.     turtle.refuel()
  54.   end
  55.   if not (math.random(1,4)==1) then
  56.     sleep(math.random(1,5))
  57.   end
  58. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement