Operating system for OpenComputers
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12 行
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