Ewgeniy

Self destruction

Sep 25th, 2021 (edited)
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.97 KB | None | 0 0
  1. -- Если вы передумали уничтожать свой комп, то  просто аварийно завершите программу через Cntr  Alt  C
  2.  
  3. local component = require("component")
  4. local event = require("event")
  5. local computer = require("component").computer
  6. local gpu = require("component").gpu
  7.  
  8.  
  9.   if component.isAvailable("self_destruct") then
  10.    self_destruct = component.self_destruct
  11.      else
  12.   print("нет карты самоуничтожения ")
  13.     computer.beep(900, 0.1)
  14.  os.exit()
  15.  end  
  16.  
  17.   local w,h = gpu.getResolution()  
  18.   gpu.fill(1,1,w,h," ")
  19.    
  20. print ("Самоуничтожение через...")
  21.  
  22. os.sleep(1)
  23.  
  24. print("")
  25. print ("  3")
  26. computer.beep(900, 0.1)
  27.  
  28. os.sleep(1)
  29.  
  30. print("")
  31. print ("  2")
  32. computer.beep(900, 0.1)
  33.  
  34. os.sleep(1)
  35.  
  36. print("")
  37. print("  1")
  38. computer.beep(900, 0.1)
  39.  
  40. os.sleep(1)
  41.  
  42. print("")
  43. print("х_х")
  44. component.self_destruct.start(0)
  45. computer.beep(900, 5)
  46.  
  47.  
Add Comment
Please, Sign In to add comment