View difference between Paste ID: A4Fd4U57 and XBUwsJDq
SHOW: | | - or go back to the newest paste.
1-
shell.run("lock")
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