Advertisement
Plazter

dot

Jun 17th, 2013
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function dot()
  2. for i = 1,3 do
  3. term.setCursorPos(8,1)
  4. print(".")
  5. sleep(0.2)
  6. term.setCursorPos(9,1)
  7. print(".")
  8. sleep(0.2)
  9. term.setCursorPos(10,1)
  10. print(".")
  11. sleep(0.2)
  12. term.clear()
  13. end
  14. end
  15.  
  16. while true do
  17. print("Loading".. dot())
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement