Advertisement
Guest User

farm

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