Advertisement
Guest User

Untitled

a guest
Apr 8th, 2015
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. function swingPick()
  2. local currentslot = robot.select()
  3. robot.select(pick)
  4. inv.equip()
  5. robot.select(currentslot)
  6. robot.swing()
  7. robot.select(pick)
  8. inv.equip()
  9. robot.select(currentslot)
  10. end
  11.  
  12. function swingPick()
  13. local currentslot = robot.select()
  14. robot.select(pick)
  15. inv.equip()
  16. robot.select(currentslot)
  17. if not robot.swing() do
  18. robot.select(scoop)
  19. inv.equip()
  20. robot.select(currentslot)
  21. robot.swing()
  22. inv.select(scoop)
  23. inv.equip()
  24. end
  25. robot.select(pick)
  26. inv.equip()
  27. robot.select(currentslot)
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement