Advertisement
CCninja86

XP Farm Melee Turtle Program

Feb 11th, 2013
715
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.89 KB | None | 0 0
  1. function turtleAttackCorner()
  2. turtle.attack()
  3. turtle.turnRight()
  4. turtle.attack()
  5. turtle.turnLeft()
  6.  
  7. function turtleAttackCentre()
  8. turtle.attack()
  9. turtle.turnRight()
  10. turtle.attack()
  11. turtle.turnRight()
  12. turtle.attack()
  13. turtle.turnRight()
  14. turtle.attack()
  15. turtle.turnRight()
  16.  
  17. function turtleDrop()
  18. turtle.select(1)
  19. turtle.drop()4
  20. turtle.select(2)
  21. turtle.drop()
  22. turtle.select(3)
  23. turtle.drop()
  24. turtle.select(4)
  25. turtle.drop()
  26. turtle.select(5)
  27. turtle.drop()
  28. turtle.select(6)
  29. turtle.drop()
  30. turtle.select(7)
  31. turtle.drop()
  32. turtle.select(8)
  33. turtle.drop()
  34. turtle.select(9)
  35. turtle.drop()
  36. turtle.select(10)
  37. turtle.drop()
  38. turtle.select(11)
  39. turtle.drop()
  40. turtle.select(12)
  41. turtle.drop()
  42. turtle.select(13)
  43. turtle.drop()
  44. turtle.select(14)
  45. turtle.drop()
  46. turtle.select(15)
  47. tutle.drop()
  48. turtle.select(16)
  49. turtle.drop()
  50.  
  51.  
  52. function turtleCorner()
  53. TurtleAttackCorner()
  54. turtleDrop()
  55.  
  56. function turtleCentre()
  57. turtleAttackCentre()
  58. turtleDrop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement