Advertisement
C07v0

Attempt of a Button Lock

Apr 9th, 2013
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.76 KB | None | 0 0
  1. --[[
  2. Program made by "notAmaster"
  3. Aka other names that will not be releast...
  4. Enjoy!
  5. ]]--
  6. function NoNo()
  7.   os.pullEvent = os.pullEventRaw
  8. end
  9.  
  10. NoNo()
  11.  
  12. function button()
  13.   NoNo()
  14.   term.setCursorPos(10,10)
  15.   print("[1]")
  16.   term.setCursorPos(14,10)
  17.   print("[2]")
  18.   term.setCursorPos(19,10)
  19.   print("[3]")
  20.   term.setCursorPos(10,11)
  21.   print("[4]")
  22.   term.setCursorPos(14,11)
  23.   print("[5]")
  24.   term.setCursorPos(19,11)
  25.   print("[6]")
  26.   term.setCursorPos(10,12)
  27.   print("[7]")
  28.   term.setCursorPos(14,12)
  29.   print("[8]")
  30.   term.setCursorPos(19,12)
  31.   print("[9]")
  32.   -- xMin, yMin, xMax, yMax
  33.   local tCoords = {
  34.     [1] = {10, 10, 13, 10, "1" },
  35.     [2] = {14, 10, 17, 10, "2" },
  36.     [3] = {19, 10, 22, 10, "3" },
  37.     [4] = {10, 11, 13, 11, "4" },
  38.     [5] = {14, 11, 17, 11, "5" },
  39.     [6] = {19, 11, 22, 11, "6" },
  40.     [7] = {10, 12, 13, 12, "7" },
  41.     [8] = {14, 12, 17, 12, "8" },
  42.     [9] = {19, 12, 22, 12, "9" },
  43.   }
  44.   local main = {
  45.   local a1 = { #tCoords[1] },
  46.   local a2 = { #tCoords[2] },
  47.   local a3 = { #tCoords[3] },
  48.   local a4 = { #tCoords[4] },
  49.   local a5 = { #tCoords[5] },
  50.   local a6 = { #tCoords[6] },
  51.   local a7 = { #tCoords[7] },
  52.   local a8 = { #tCoords[8] },
  53.   local a9 = { #tCoords[9] },
  54.   }
  55.   main = os.pullEvent("mouse_click")
  56.   if a1 and a2 and a3 and a4 and a5 and a6 and a7 and a8 and a9 == ("123456789") then
  57.     print('Congratz, also to change the password type "edit (what you called this program)" then find the long if function, then simply change the stuff in the (" ")')
  58.    else
  59.     print("ERROR: Dumb person trying to guess the password!")
  60.     print("System will now reboot")
  61.     sleep(2)
  62.     os.reboot()
  63.   end
  64. end
  65.  
  66. function top()
  67.   NoNo()
  68.   term.clear()
  69.   term.setCursorPos(15,1)
  70.   print("xPasslocKx, by notAmaster")
  71. end
  72. top()
  73. button()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement