Advertisement
Guest User

BitRaider

a guest
Jan 23rd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. --os.pullEvent = os.pullEventRaw
  2.  
  3. term.clear()
  4. term.setCursorPos(1,1)
  5.  
  6. firstboot = 0
  7.  
  8. function Setup()
  9.   if firstboot == 0 then
  10.     print("Welcome to BitRaider")
  11.       sleep(2)
  12.  
  13.     firstboot = 1
  14.  
  15.   FirstBoot()
  16. else
  17.  
  18.   NormalBoot()
  19.  end
  20. end
  21.  
  22. function FirstBoot()
  23.   print("Loading BitSetup.exe..")
  24.   sleep(5)
  25.   term.clear()
  26.   print("License key required!")
  27.   print("---------------------")
  28.   local LicenseKey = read()
  29.   if Lic
  30.  
  31.  
  32.  
  33.  
  34.  
  35. Setup()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement