Advertisement
TIMAS_Bro

station bios

May 11th, 2023 (edited)
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. function main()
  2. shell.run("/station.lua")
  3. end
  4. function tablo()
  5. shell.run("/fff")
  6. end
  7. function write(txt)
  8. term.write(txt)
  9. end
  10. function sbc(clr)
  11. term.setBackgroundColor(clr)
  12. end
  13. function stc(clr)
  14. term.setTextColor(clr)
  15. end
  16. function scp(x,y)
  17. term.setCursorPos(x,y)
  18. end
  19. local sx,sy = term.getSize()
  20. function center(y,txt)
  21. term.setCursorPos(math.ceil((sx / 2) - (txt:len() / 2)), y)
  22. write(txt)
  23. end
  24. -- draw basic gui
  25. term.setBackgroundColor(colors.lightBlue)
  26. term.clear()
  27. sbc(colors.blue)
  28. center(2,"TMZS-STATION")
  29. sbc(colors.lightBlue)
  30. center(4 ,"made for creatopicorails(monamu)")
  31. center(7,"Press enter to open craft os")
  32. local function timer()
  33. local timer = 5
  34. repeat
  35. center(9,tostring(timer))
  36. timer = timer -1
  37. sleep(1)
  38. until timer == 0
  39. local file = fs.open("/scp","w")
  40. file.write("1")
  41. file.close()
  42. os.reboot()
  43. end
  44. local function key()
  45. local event, key, isHeld = os.pullEvent("key")
  46. if key == keys.enter then
  47. local file = fs.open("/scp","w")
  48. file.write("2")
  49. file.close()
  50. os.reboot()
  51. end
  52. end
  53. local chos
  54. local filet = fs.open("/scp","r")
  55. if filet then
  56. else
  57. local filet = fs.open("/scp","w")
  58. filet.write("0")
  59. filet.close()
  60. end
  61. local chos = filet.readAll()
  62. filet.close()
  63. local filec = fs.open("/scp","w")
  64. if filec then ch = filec.readAll end
  65. if chos == "1" then
  66. sleep(1)
  67. term.clear()
  68. sbc(colors.black)
  69. stc(colors.white)
  70. scp(1,1)
  71. term.clear()
  72. filec.write("0")
  73. filec.close()
  74. parallel.waitForAll(tablo,main)
  75. elseif chos == "2" then
  76. sleep(1)
  77. term.clear()
  78. sbc(colors.black)
  79. stc(colors.white)
  80. scp(1,1)
  81. term.clear()
  82. filec.write("0")
  83. filec.close()
  84. else
  85. filec.close()
  86. parallel.waitForAll(key,timer)
  87. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement