Advertisement
TIMAS_Bro

os

Oct 15th, 2023 (edited)
871
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.46 KB | None | 0 0
  1. os.loadAPI("lg/lg")
  2. local _shell = _G.shell
  3. _G.shell = shell
  4. os.loadAPI("tos/tos")
  5. _G.shell = shell
  6. lg.setup("term")
  7. lg.setBackgroundColor(colors.white)
  8. local bg_col = colors.lightGray
  9. if tos.getPersistentVariable("color") ~= nil and lg.isColor(tos.getPersistentVariable("color")) then
  10.    bg_col = lg.getColor(tos.getPersistentVariable("color"))
  11. end
  12. lg.fillScreen(bg_col)
  13. if tos.getPersistentVariable("uap_upd") ~= "ok" then
  14.   shell.run("delete","/uap")
  15.   shell.run("pastebin","get","1Nax8cQm","/uap")
  16.   tos.writePersistentVariable("uap_upd","ok")
  17. end
  18. lg.setTextColor(colors.black)
  19. local up_col = tos.getPersistentVariable("upl_col")
  20. if up_col and lg.isColor(up_col) then
  21. lg.fill(1, 26, 2, 2,lg.getColor(up_col))
  22. else
  23. upl_col = "gray"
  24. lg.fill(1,26,2,2,colors.gray)
  25. end
  26. local up_sym = tos.getPersistentVariable('upl_sym')
  27. if not up_sym then up_sym = " " end
  28.  for i = 1,26 do
  29.    lg.drawText(i,2,colors.white,lg.getColor(up_col),up_sym)
  30. end
  31.  
  32. local dwl_col = tos.getPersistentVariable("dwl_col")
  33. if dwl_col and lg.isColor(dwl_col) then
  34. lg.fill(1,26,19,19,lg.getColor(tos.getPersistentVariable('dwl_col')))
  35. else
  36. dwl_col = "gray"
  37. lg.fill(1,26,19,19,colors.gray)
  38. end
  39.  
  40. lg.drawBT("bank",3,8,4,7,colors.black,colors.orange," crea\n bank")
  41. lg.drawBT('shell', 11,16,4,7,colors.green,colors.black," Bios")
  42. lg.drawBT('updater', 3,8,9,12,colors.white,colors.blue," Upd\n ate")
  43. lg.drawBT('pong',19,24,4,7,colors.white,colors.black,' ping\n pong')
  44. lg.drawBT('dgame',11,16,9,12,colors.white,colors.orange,' DRIVE\n GAME')
  45. lg.drawBT('creabet',19,24,9,12,colors.white,colors.green,' CREA\n bet')
  46. lg.drawBT('settings',3,8,14,17,colors.white,colors.gray,' sett\n ings')
  47. lg.drawBT("files",11,16,14,17,colors.orange,colors.white," FILE\n MGR")
  48.  
  49. while true do
  50. local event, button, x, y = os.pullEvent( "mouse_click" )
  51. if (lg.isButton(x,y) == "bank") then
  52. tos.openFile('/bank/bank')
  53. elseif (lg.isButton(x,y) == "updater") then
  54. tos.openFile("/upd/upd")
  55. elseif (lg.isButton(x,y) == 'pong') then
  56. tos.openFile('/pong/pong')
  57. elseif (lg.isButton(x,y) == 'dgame') then
  58. tos.openFile('/drivegame/drivegame')
  59. elseif (lg.isButton(x,y) == 'creabet') then
  60. tos.openFile('/kazik/kazik')
  61. elseif (lg.isButton(x,y) == 'settings') then
  62. tos.openFile('/settings/settings')
  63. elseif (lg.isButton(x,y) == 'files') then
  64. tos.openFile('/files/files',true)
  65. elseif (lg.isButton(x,y) == "shell") then
  66.   --lg.drawImage(1,15,"gui.nfp")
  67.   term.clear()
  68.   term.setCursorPos(1,1)
  69.   break
  70. end
  71. end
  72. lg.exit()
  73.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement