Advertisement
charonme

killaround

Jan 27th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- killaround
  2. -- doesn't move, just rotates and kills all around and drops any items down
  3.  
  4. while true do
  5.     for i=1, 16 do
  6.         turtle.turnRight()
  7.         turtle.attack()
  8.         turtle.attackUp()
  9.         turtle.attackDown()
  10.     end
  11.  
  12.     for i = 1, 16 do
  13.         turtle.select(i)
  14.         turtle.dropDown()
  15.     end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement