matheuscat12

Screensaver - by Rednet Works

Sep 6th, 2012
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.24 KB | None | 0 0
  1. print("What you want that show on your Wallpaper?")
  2. write(": ")
  3. pt = read()
  4. term.clear()
  5. termx, termy = term.getSize()
  6. while true do
  7. print(pt)
  8. sleep(1.5)
  9. term.setCursorPos(math.random(termx - string.len(pt)), math.random(termy - 1))
  10. end
Add Comment
Please, Sign In to add comment