Advertisement
Guest User

Untitled

a guest
Apr 24th, 2012
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. --Selection Sample code atm :D
  2. function Select(...)
  3. Msg = {"See you in hell!", "Prepare to DIE!!!!", "Who do you want to kill master...", "Destroy your PC! You are the 100,000,000th winner! Destroy your PC now to claim!", "Connecting to IRC... Connection failed", "Theres cake. Behind you. Yes. There."}
  4. local Table = {...}
  5. x,y = term.getSize()
  6. local Fit = math.floor(x)
  7. shell.run("clear")
  8. local function ClearOption(One, Two)
  9. term.setCursorPos(1, One)
  10. for n=1,3 do
  11. term.clearLine()
  12. term.setCursorPos(1, One+n)
  13. end
  14. term.setCursorPos(1, One+1)
  15. print(" "..Two)
  16. end
  17. local function SetOption(One, Two)
  18. term.setCursorPos(1, One)
  19. print(string.rep("=", string.len(Two)+2))
  20. print("="..Two.."=")
  21. write(string.rep("=", string.len(Two)+2))
  22. end
  23. function Startup()
  24. Status = 4
  25. No = 2
  26. SetOption(1, Table[1])
  27. while (Status-3) < Fit do
  28. if Table[No] then
  29. ClearOption(Status, Table[No])
  30. end
  31. No = No+1
  32. Status = Status+3
  33. end
  34. Status = 1
  35. No = 1
  36. end
  37. Startup()
  38. while true do
  39. event,param1,param2 = os.pullEvent()
  40. if event == "key" and param1 == 200 and Status > 1 and Table[No-1] then --Up. 208 is down
  41. ClearOption(Status, Table[No])
  42. No = No-1
  43. Status = Status-3
  44. SetOption(Status, Table[No])
  45.  
  46. elseif event == "key" and param1 == 208 and Status < Fit and Table[No+1] then
  47. ClearOption(Status, Table[No])
  48. No = No+1
  49. Status = Status+3
  50. SetOption(Status, Table[No])
  51. elseif event == "key" and param1 == 28 then
  52. shell.run("clear")
  53. print(Msg[No])
  54. sleep(3)
  55. shell.run("clear")
  56. Startup()
  57. end
  58. end
  59. end
  60. Select("Bye", "Die", "Kill", "Destroy", "IRC", "Lie")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement