Guest User

tos

a guest
Oct 15th, 2023
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.26 KB | None | 0 0
  1. local shell = _G.shell
  2. os.loadAPI("uap")
  3. local sx,sy = term.getSize()
  4. local function mainButton()
  5.   while true do
  6.   if uap.getU() == true then
  7.   term.setTextColor(colors.white)
  8.   term.setBackgroundColor(colors.black)
  9.   for i=1,sx do
  10.     term.setCursorPos(i,1)
  11.     term.write(" ")
  12.   end
  13.   term.setCursorPos(1,1)
  14.   local time = os.time()
  15.   local formattedTime = textutils.formatTime(time, false)
  16.   write(formattedTime)
  17.   local isRO = false
  18.   for k,v in pairs(redstone.getSides()) do
  19.     if (rednet.isOpen(v)) then
  20.       isRO = true
  21.     end
  22.   end
  23.   local texxt = nil
  24.   if (isRO) then
  25.     texxt = "Rednet: OK"
  26.   else
  27.     texxt = "Rednet: OFF"
  28.   end
  29.   term.setCursorPos(sx-string.len(texxt),1)
  30.   term.write(texxt)
  31.   for i=1,sx do
  32.     term.setCursorPos(i,sy)
  33.     term.write(" ")
  34.   end
  35.   term.setCursorPos(sx/2+1,sy)
  36.   write("O")
  37.   uap.setU(false)
  38.   end
  39.   os.sleep(1)
  40.   end
  41. end
  42. local function click()
  43.   while true do
  44.     local event, button, x, y = os.pullEvent( "mouse_click")
  45.     if (y == sy) then
  46.       os.reboot()
  47.     end
  48.   end
  49. end
  50. local namev = nil
  51. function sopen(names)
  52.   shell.run(names)
  53. end
  54. local function open()
  55.   name = namev
  56.   sopen(name)
  57. end
  58. function openFile(name)
  59.   namev = name
  60.   parallel.waitForAny(click,open,mainButton)
  61. end
Add Comment
Please, Sign In to add comment