Plazter

PlazterAPI

May 24th, 2013
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. local get = rs.getInput
  2. local set = rs.setOutput
  3. local t = turtle
  4. local w = while true do -- dont ask me why!
  5. local =
  6.  
  7. function right()
  8. turtle.turnRight()
  9. end
  10.  
  11. function left()
  12. turtle.turnLeft()
  13. end
  14.  
  15. function forward()
  16. turtle.forward()
  17. end
  18.  
  19. function back()
  20. turtle.back()
  21. end
  22.  
  23. function up()
  24. turtle.up()
  25. end
  26.  
  27. function down()
  28. turtle.up()
  29. end
Advertisement
Add Comment
Please, Sign In to add comment