Advertisement
NorthmcCormick

Untitled

Sep 17th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. print("Booting NOS")
  2. --os.sleep(1)
  3. print("Checking Monitors")
  4. --os.sleep(1)
  5. print("Checking Disks")
  6. --os.sleep(1)
  7. print("Here we go!")
  8. os.sleep(1)
  9.  
  10.  
  11. --Set Up Globals
  12.  
  13. --Set Up Functions
  14.  
  15. --Set Up Render
  16.  
  17. for i=1,40 do
  18.         write(i)
  19.     end
  20.  
  21. while true do
  22.     --Logic
  23.  
  24.     --Render
  25.     term.clear()
  26.     term.setCursorPos(1,1)
  27.  
  28.     term.setTextColor(1)
  29.  
  30.     for i=1,51 do
  31.         write("1")
  32.     end
  33.  
  34.     term.setTextColor(2)
  35.     write("\n")
  36.     for i=1,51 do
  37.         write("1")
  38.     end
  39.  
  40.     os.sleep(1)
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement