Pinkishu

screenProg

Aug 11th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.19 KB | None | 0 0
  1. local aScreen = {
  2.     "                                     ",
  3.     "                                     ",
  4.     "            %%%      %%%             ",
  5.     "           %%%%%    %%%%%            ",
  6.     "          %%%%%%%%%%%%%%%%           ",
  7.     "          %%%%%%%%%%%%%%%%           ",
  8.     "           %%%%%%%%%%%%%%            ",
  9.     "              %%%%%%%%%              ",
  10.     "                %%%%%                ",
  11.     "                 %%%                 ",
  12.     "                  %                  "
  13. }
  14.  
  15. local bScreen = {
  16.     "                                     ",
  17.     "                                     ",
  18.     "        $$$     $$$                  ",
  19.     "        $$$     $  $                 ",
  20.     "                $   $                ",
  21.     "                $   $                ",
  22.     "        $$$     $  $                 ",
  23.     "        $$$     $$$                  ",
  24.     "                                     ",
  25.     "                                     ",
  26.     "                                     "
  27. }
  28.  
  29. effectsAPI.playEffect(1,1,nil,aScreen,"randomScatter")
  30. sleep(5)
  31. while true do
  32.     effectsAPI.playEffect(1,1,aScreen,bScreen,"randomScatter")
  33.     sleep(5)
  34.     effectsAPI.playEffect(1,1,bScreen,aScreen,"randomScatter")
  35.     sleep(5)
  36. end
Advertisement
Add Comment
Please, Sign In to add comment