This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Kingdaro's profile picture

wasabi

Started by Kingdaro, 13 February 2013 - 06:10 AM
Kingdaro #1
Posted 13 February 2013 - 07:10 AM

while true do
  local w,h = term.getSize()
  term.clear()
  term.setCursorPos(math.random(w - 5), math.random(h))
  term.setTextColor(2^math.random(14))
  term.write('WASABI')
  sleep(0.05)
end

wasabi
Lyqyd #2
Posted 13 February 2013 - 07:28 AM
Geez, Kingdaro, how many times do I have to tell you not to code while you're drunk? :P/>/>

Locked.
Cranium #3
Posted 13 February 2013 - 07:44 AM
Actually, if you take away the term.clear() function call, it makes for an interesting screensaver.