Advertisement
Guest User

Farm

a guest
Jan 24th, 2015
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. function moveFrameSouth()
  2.   rs.setBundledOutput("left", colors.green)
  3.   sleep(1)
  4.   rs.setBundledOutput("left", 0)
  5.   sleep(2)
  6. end
  7.  
  8. function moveFrameNorth()
  9.    rs.setBundledOutput("left", color.red)
  10.    sleep(1)
  11.    rs.setBundledOutput("left", 0)
  12.    sleep(2)
  13. end
  14.  
  15. for i = 1, 6 do
  16.   moveFrameSouth()
  17. end
  18.  
  19. sleep(5)
  20.  
  21. for i = 1, 6 do
  22.   moveFrameNorth()
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement