Advertisement
Vorakh

Ricarica TNT del Turtle Refiller

Aug 16th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.63 KB | None | 0 0
  1. -- Nome: Ricarica TNT del Turtle Refiller
  2. -- Programmatore: Vorakh
  3. -- Data: 16/8/2013
  4.  
  5. -- Ricarica Munizioni
  6.  
  7. turtle.turnLeft()
  8. turtle.forward()
  9. turtle.forward()
  10. turtle.forward()
  11. turtle.turnRight()
  12. turtle.forward()
  13.  
  14. for i = 1, 16 do
  15.     turtle.select(i)
  16.     turtle.drop(64)
  17. end
  18.  
  19. turtle.up()
  20. turtle.select(1)
  21. turtle.suck()
  22. turtle.suck()
  23. turtle.suck()
  24. turtle.select(3)
  25. turtle.drop()
  26.  
  27. turtle.select(16)
  28. turtle.suck()
  29. turtle.transferTo(3,16)
  30. turtle.drop()
  31.  
  32. turtle.down()
  33. turtle.turnRight()
  34. turtle.turnRight()
  35. turtle.forward()
  36. turtle.turnLeft()
  37. turtle.forward()
  38. turtle.forward()
  39. turtle.forward()
  40. turtle.turnLeft()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement