Advertisement
k_goos

SignTurtle

Apr 27th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. local count = 2
  2. local temp = true
  3.  
  4. function main()
  5. turtle.refuel()
  6. turtle.select(count)
  7. while true do
  8. if turtle.forward() then
  9. if turtle.getItemCount(count) == 0 then
  10. count = count + 1
  11. turtle.select(count)
  12. end
  13. turtle.placeDown("Glenn is gay")
  14. print("GAY GAY GAY GAY GAY GAY GAY...")
  15. else
  16. if temp then
  17. turtle.turnRight()
  18. turtle.forward()
  19. turtle.turnRight()
  20. temp = false
  21. else
  22. turtle.turnLeft()
  23. turtle.forward()
  24. turtle.turnLeft()
  25. temp = true
  26. end
  27. end
  28. end
  29. end
  30.  
  31. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement