Advertisement
dadragon84

starter

Apr 30th, 2023 (edited)
668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function clearScreen()
  2.     term.clear()
  3.     term.setCursorPos(1,1)
  4. end
  5.  
  6. scriptName = "John Dowe Security Inc."
  7. author = "Mr John Dowe"
  8. version = "1.3"
  9. lastModified = "04/30/2023"
  10.  
  11. function header()
  12.     clearScreen()
  13.     print("Starting Security Services")
  14.     sleep(1)
  15.     print("Please wait while I load into the system")
  16.     sleep(5)
  17.     print("Downloading....")
  18.     sleep(2)
  19.     print("Starting "..scriptName.." Version: "..version)
  20.     print("Last Updated: "..lastModified )
  21.     sleep(5)
  22.     shell.run("lock")
  23.    
  24. end
  25.  
  26.  
  27. header()
  28.  
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement