You might change this
--------
while (/bin/tetris | grep -v '0 lines'); do; done
--------
to look like this
--------
while (/bin/tetris | grep -v '^0 lines'); do; done
--------
or maybe a space in place of the ^, depending on what it's output looks like. That way it won't have a 10% chance of quitting the loop because you got something like 130 lines (which has the string '0 lines').

--The Amigo
_________________________
--The Amigo