Operating system for OpenComputers
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
215B

  1. local lc = computer.uptime()
  2. _G.clip = ""
  3. while true do
  4. local eT = {coroutine.yield()}
  5. if eT[1] == "clipboard" then
  6. if computer.uptime() > lc + 5 then
  7. _G.clip = ""
  8. end
  9. _G.clip = _G.clip .. eT[3]
  10. end
  11. end