Advertisement
Guest User

Untitled

a guest
Jul 10th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. local oldPull = os.pullEvent
  2. os.pullEvent = os.pullEventRaw
  3. local nubers = {}
  4. local code {1,2,3}
  5. local visible = {}
  6. local checked = {}
  7. local name = shell.getRunningProgram()
  8. local x,y = term.getSize()
  9. local valid = true
  10. local ascii = [[
  11.  
  12.  
  13.  
  14.  
  15. ___________________
  16. / Secure Safe \
  17. / ____ \
  18. | / \___ |
  19. | | 00 |___| |
  20. | \____/ |
  21. \ /
  22. \___________________/
  23. ]]
  24. local currNum = 0
  25. local currPos = 1
  26.  
  27. term.clear()
  28. term.setCursorPos(1,1)
  29. print(ascii)
  30. while true do
  31. local sEvent,a1,a2,a3 = os.pullEvent()
  32. if sEvent == "mouse_scroll" then
  33. if a1 == 1 then
  34. if currNum > -9 then
  35. currNum = currNum - 1
  36. end
  37. elseif a1 == -1 then
  38. if currNum < 9 then
  39. currNum = currNum + 1
  40. end
  41. end
  42. elseif sEvent == "mouse_click" and a1 == 1 then
  43. numbers[currPos] = currNum
  44. visible[currPos] = (currNum .. " ")
  45. currPos = currPos + 1
  46. end
  47. if numbers[#code] ~= nil then
  48. break
  49. end
  50. term.clear()
  51. term.setCursorPos(1,1)
  52. print(ascii)
  53. term.setCursorPos(24,9)
  54. if currNum < 10 and currNum > -1 then
  55. write("0"..currNum)
  56. else
  57. write(currNum)
  58. end
  59. term.setCursorPos((x/2)-(string.len(table.concat(visible))/2),15)
  60. term.write(table.concat(visible))
  61. end
  62. for i = 1, #code do
  63. if code[i] == numbers[i] then
  64. checked[i] = true
  65. else
  66. checked[i] = false
  67. end
  68. end
  69. for i = 1, #checked do
  70. if checked[i] == false then
  71. valid = false
  72. break
  73. end
  74. end
  75. if not valid then
  76. term.clear()
  77. term.setTextColor(colors.red)
  78. term.setCursorPos(x/2)-string.len("WRONG.)/2,y/2)
  79. term.write("WRONG.")
  80. sleep(.25)
  81. term.setTextColor(colors.white)
  82. shell.run(name)
  83. end
  84. os.pullEvent = oldPull
  85. term.clear()
  86. term.setCursorPos(1,1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement