Advertisement
Guest User

goto

a guest
Nov 1st, 2012
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.19 KB | None | 0 0
  1. local targs = {...}
  2. local ndirect = 0
  3. nx, ny, nz, ndirect = nil
  4.  
  5. function turn(x)
  6.     while direct ~= x do
  7.         if direct ~= 4 then
  8.             turtle.turnRight()
  9.             direct = direct + 1
  10.         else
  11.             turtle.turnRight()  
  12.             direct = 1
  13.          end
  14.     end
  15. end
  16.  
  17. function x()
  18.     if nx < cx then
  19.         turn(1)
  20.         if turtle.forward() then
  21.             cx = cx - 1
  22.             help = 1
  23.             x()
  24.         else
  25.             z()
  26.         end
  27.     elseif nx > cx then
  28.          turn(3)
  29.          if turtle.forward() then
  30.             cx = cx + 1
  31.             help = 1
  32.             x()
  33.          else
  34.             z()
  35.          end
  36.     else
  37.          z()
  38.     end
  39. end
  40.  
  41. function z()
  42.     if nz < cz then
  43.         turn(2)
  44.         if turtle.forward() then
  45.             cz = cz - 1
  46.             help = 1
  47.             z()
  48.         else
  49.             y()
  50.         end
  51.     elseif nz > cz then
  52.         turn(4)
  53.         if turtle.forward() then
  54.             cz = cz + 1
  55.             help = 1
  56.             z()
  57.         else
  58.             y()
  59.         end
  60.     else
  61.         y()
  62.     end
  63. end
  64.  
  65. function y()
  66.     if help ~= 1 then
  67.     if ny < cy then
  68.         if turtle.down() then
  69.             cy = cy - 1
  70.         else
  71.             help()
  72.         end
  73.     elseif ny > cy then
  74.         if turtle.up() then
  75.             cy = cy + 1
  76.         else
  77.             help()
  78.         end
  79.     else
  80.         help()
  81.     end
  82.     end
  83. end
  84.  
  85. function help()
  86.     if helpstuck == 0 then
  87.          if turtle.up() then
  88.              cy = cy + 1
  89.              x()
  90.          else
  91.              helpstuck = 1
  92.             help()
  93.          end
  94.     elseif turtle.down() then
  95.             cy = cy - 1
  96.             x()
  97.      else
  98.             print("I'm stuck and shut down!")
  99.      end
  100. end
  101.  
  102.        
  103.                
  104.  
  105. -- write("Wohin solls gehen? x, y, z, direct (1-4)")
  106.  
  107. --local tArgs = {...}
  108. local nx = tonumber(tArgs[1])
  109. local ny = tonumber(tArgs[2])
  110. local nz = tonumber(tArgs[3])
  111. local ndirect = tonumber(tArgs[4])
  112.  
  113. print(""..nx)
  114.  
  115. os.sleep(5)
  116.  
  117. shell.run("skyside")
  118.  
  119. print(""..cx)
  120.  
  121. rednet.open("right")
  122.  
  123. if cx then
  124. x()
  125. turn(ndirect)
  126. --else
  127. --print("Can't get position")
  128. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement