Advertisement
Guest User

bulletin.lua

a guest
Feb 21st, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. local component = require('component')
  2. local f = require('shell')
  3.  
  4. h = 1
  5.  
  6. while h < 9999 do
  7. f.execute('clear')
  8. f.execute('cat /srv/network/public/bulletin/info.txt')
  9. os.sleep(15)
  10. f.execute('clear')
  11. f.execute('cat /srv/network/public/bulletin/todo.txt')
  12. os.sleep(15)
  13. f.execute('clear')
  14. f.execute('cat /srv/network/public/bulletin/stargates.txt')
  15. os.sleep(15)
  16. f.execute('clear')
  17. f.execute('cat /srv/network/public/bulletin/ads.txt')
  18. os.sleep(15)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement