balink

help

Feb 11th, 2012
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.59 KB | None | 0 0
  1. while colrot < 17 do
  2.         coltest = 2^(colrot-1)
  3.         colout = colors.test(tests, coltest)
  4.         file = io.open("debugger", "a")
  5.         file:write("\nrotated to " .. colrot)
  6.         file:close()
  7.         colrot = colrot + 1
  8.         if colout then
  9.           file = io.open("debugger", "a")
  10.           file:write("\ncounting: " .. colrot)
  11.           file:close()
  12.           collist[colrot] = collist[colrot] + 1
  13.             file = io.open("debugger", "a")
  14.             file:write("\ncounted: " .. colrot)
  15.             file:close()
  16.         end
  17.         file = io.open("debugger", "a")
  18.         file:write("\nout of if")
  19.         file:close()
  20.       end
Advertisement
Add Comment
Please, Sign In to add comment