Advertisement
Guest User

ccrain

a guest
Oct 12th, 2013
2,363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.61 KB | None | 0 0
  1. local speed = 10
  2. --ccRain by CosmoConsole for ComputerCraft
  3.  
  4. term.clear()
  5. term.setCursorPos(1,10)
  6. print("C")
  7. os.sleep(0.05)
  8. print(" C")
  9. os.sleep(0.05)
  10. print("  R")
  11. os.sleep(0.05)
  12. print("   A")
  13. os.sleep(0.05)
  14. print("    I")
  15. os.sleep(0.05)
  16. print("     N")
  17. os.sleep(0.05)
  18. local function saferandom(x,y)
  19.  if x==y then
  20.   return x
  21.  end
  22.  return math.random(x,y)
  23. end
  24. term.setCursorPos(1,19)
  25. for i=1,12 do
  26.  print(" ")
  27.  os.sleep(0.05)
  28. end
  29. local currently = 0
  30. local currentX = 0
  31. local currentY = 0
  32. local currentL = 0
  33. local rows = {}
  34. for i=1,51 do
  35.  rows[i]=0
  36. end
  37. term.clear()
  38. local render = 0
  39. local maxDist = 15
  40. while true do
  41.  render = 1
  42.  if currently == 0 then
  43.   currentY = 1
  44.   currentX = math.random(51)
  45.   currently = 1
  46.   maxDist = 15
  47.   currentL = 64 + math.random(26)
  48.   currentC = math.random(1,14)
  49.   currentC = math.pow(2,currentC)
  50.  else
  51.   if currentY == (19 - rows[currentX]) then
  52.    currently = 0
  53.    rows[currentX]=rows[currentX]+1
  54.    render = 0
  55.    if rows[currentX]==20-speed then
  56.     for i=1,20 do
  57.      term.setCursorPos(1,19)
  58.      print(" ")
  59.      sleep(0.05)
  60.     end
  61.     for i=1,51 do
  62.      rows[i] = 0
  63.     end
  64.    end
  65.   else
  66.    term.setCursorPos(currentX,currentY)
  67.    write(" ")
  68.    currentY = currentY + math.min(maxDist,speed)
  69.    maxDist = (19 - rows[currentX]) - currentY
  70.   end
  71.  end
  72.  if render == 1 then
  73.   if term.isColor() then
  74.    term.setTextColor(currentC)
  75.   end
  76.   term.setCursorPos(currentX,currentY)
  77.   write(string.char(currentL))
  78.  end
  79.  os.startTimer(0.05)
  80.  local k = os.pullEvent()
  81.  if k == "key" then
  82.   term.clear()
  83.   term.setCursorPos(1,2)
  84.   error()
  85.  end
  86. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement