Here it is
![Image](http://home.broadpark.no/~hakarlse/jek/jezzball.png)
How to play:
Clear the board by isolating the balls from the rest of the board.
To advance to the next level, you have to clear at least 75 percent.
Keys:
Circle - Divide left/right
Cross - Divide up/down
Moderators: Shine, Insert_witty_name
Code: Select all
if shooting == true then
shootLines()
offscreen:drawLine(line_x1*15-offx, line_y1*15-offy, line_x1_end*15-offx, line_y1_end*15-offy, color)
offscreen:drawLine(line_x1*15-offx-1, line_y1*15-offy, line_x1_end*15-offx-1, line_y1_end*15-offy, color)
offscreen:drawLine(line_x1*15-offx+1, line_y1*15-offy, line_x1_end*15-offx+1, line_y1_end*15-offy, color)
end
if shootingH == true then
shootLinesH()
offscreen:drawLine(line_x1*15-offx, line_y1*15-offy, line_x1_end*15-offx, line_y1_end*15-offy, color)
offscreen:drawLine(line_x1*15-offx, line_y1*15-offy+1, line_x1_end*15-offx, line_y1_end*15-offy+1, color)
offscreen:drawLine(line_x1*15-offx, line_y1*15-offy-1, line_x1_end*15-offx, line_y1_end*15-offy-1, color)
end