Advertisement
Klazam33

Wither Placer

Feb 12th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. os.loadAPI("kapi")
  2.  
  3. while true do
  4. kapi.menu("Wither Placer \nPut Soul Sand in slot 1\nPut Wither Skulls in slot 2\n\nPress enter to activate.")
  5. kapi.printFuel()
  6. kapi.rawread(28)
  7.  
  8. kapi.forward(3)
  9. kapi.down()
  10. turtle.select(1)
  11. kapi.place("d")
  12. kapi.turn("r")
  13. kapi.place("f")
  14. kapi.turn("b")
  15. kapi.place("f")
  16. kapi.up()
  17. kapi.place("d")
  18. turtle.select(2)
  19. kapi.place("f")
  20. kapi.turn("b")
  21. kapi.place("f")
  22. kapi.turn("r")
  23. kapi.forward()
  24. kapi.turn("b")
  25. kapi.place("f")
  26. kapi.turn("b")
  27. kapi.forward(2)
  28. kapi.turn("b")
  29.  
  30.  
  31.  
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement