Advertisement
loepie

Minecraft Frame movement with bundled cable 0.2

May 11th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. dn = colors.lime
  3. de = colors.purple
  4. ds = colors.orange
  5. dw = colors.lightBlue
  6. rs = redstone
  7.  
  8. function moveNorth()
  9. rs.setBundledOutput("left", dn)
  10. sleep(0.1)
  11. rs.setBundledOutput("left", 0)
  12. sleep(1)
  13. end
  14.  
  15. function moveEast()
  16. rs.setBundledOutput("left", de)
  17. sleep(0.1)
  18. rs.setBundledOutput("left", 0)
  19. sleep(1)
  20. end
  21.  
  22. function moveSouth()
  23. rs.setBundledOutput("left", ds)
  24. sleep(0.1)
  25. rs.setBundledOutput("left", 0)
  26. sleep(1)
  27. end
  28.  
  29. function moveWest()
  30. rs.setBundledOutput("left", dw)
  31. sleep(0.1)
  32. rs.setBundledOutput("left", 0)
  33. sleep(1)
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement