Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Anti CtrlT
- os.pullEvent=os.pullEventRaw
- --Variables
- ntapiloc = shell.resolve("nerdtalk")
- --Loading API's
- if not fs.exists(ntapiloc) then
- print("Nerdtalk is not present on this system, attempting to download...")
- if http then
- local wHandle = http.get("http://pastebin.com/raw.php?i=9zdaF9SV")
- if wHandle then
- local fHandle = fs.open(ntapiloc, "w")
- if fHandle then
- fHandle.write(wHandle.readAll())
- fHandle.close()
- else
- print("Could not open executable for writing.")
- end
- wHandle.close()
- else
- print("Could not connect to pastebin.")
- end
- else
- print("HTTP is disabled.")
- end
- end
- os.loadAPI(ntapiloc)
- function header()
- nerdtalk.clearPage()
- nerdtalk.centerPrint(" ------------------- ")
- nerdtalk.centerPrint("| Vulain Industries |")
- nerdtalk.centerPrint(" ------------------- ")
- end
- --Main Program
- function login()
- header()
- print(" ")
- print(" ")
- print(" ")
- nerdtalk.centerWrite(" Verification:")
- ui = read("*")
- if ui == "lucozade" then
- header()
- nerdtalk.centerPrint("Connection Accepted")
- logging = false
- else
- nerdtalk.clearPage()
- term.setCursorPos(1, 9)
- nerdtalk.centerPrint("Incorrect Password")
- end
- end
- logging = true
- while logging do
- login()
- end
Advertisement
Add Comment
Please, Sign In to add comment