Advertisement
LostMiner

not a torrent

Nov 2nd, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --New Age Stoner--
  2. --For the purifying daisy--
  3. t = turtle
  4. t.select(1)
  5.  
  6. function left()
  7.     t.turnLeft()
  8.     t.forward()
  9.     t.turnRight()
  10. end
  11. function side()
  12.     length = 3
  13.     while length > 0
  14.         t.place()
  15.         left()
  16.         length = length - 1
  17.     end
  18.     left()
  19.     t.forward()
  20.     t.turnRight()
  21. end
  22. function loop()
  23.     loops = 4
  24.     while loops > 0 do
  25.         side()
  26.         loops = loops - 1
  27.     end
  28. end
  29. function main()
  30.     while not (t.getItemCount() == 0) do
  31.         loop()
  32.     end
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement