Icy Bubble II released!
I am pleased to introduce you Icy Bubble II, a game made by Abhilash.
It’s the sequel of Icy Bubble, and it has some new interesting features.
Abhilash said: “hi!
after more than two months my second game is ready ‘Icy Bubble II’.
Its graphics are better than the previous one.I hope people will enjoy playing it as i enjoyed it making….. “
The first interesting thing is the style used to draw stages: it reminds the one of a game called “Bubble soap” (and the “ball” too now is a bubble soap) but I like more the color scheme used in Icy Bubble II.
The second one is a level code system that allows you to begin from a specific level if you know its code.
The game provides an interesting challenge as you guide your icy bubble through the levels
They can be easily customized to meet the unique requirements of your project.


























This post has 18 comments
Robin
I can’t even win the first level :P
Monkios
This thing is hard and the colors are a bit too dark for me.
I had to zoom in and play with the frame with my mouse to fet to the higher levels.
Evan
I like the color scheme :).
Skipped to lvl 13 w/ the code. :P
abhilash
in reply to robin:
i don’t think first level was too hard, I could complete it easily everytime
Tony
Very good colors, I like them a lot
abhilash
thanx tony 4 appreciating the game….
Flash Prayer
Woe , nice game. But it’s too hard….
Mahesh
Nice game. Is this licenseable?
abhilash
in reply to mahesh:
wat do you mean by “licenseable”??
Thomas
Cool Game! Though a bit of logic is required. As far as I know, bubbles don’t float in water.
abhilash
in reply to thomas:
yeah you are right but that was only for making the the a bit more challenging
thierry
Level 8 !!! How many levels to finish the game ?
abhilash
in reply to thierry:
“only” 8 more :)
thierry
Level 14 … seems quite hard to cross the explosion ?!! Are u sure it is possible ? :) Is the purpose to cross it very fast ?
abhilash
in reply to thierry:
no u can’t cross the explosion,there’s a switch to off it,u can find it easily, there is a arrow pointing towards it.
I think u r the only one who has reached lvl 14
thierry
I finished the game !!!!! The last level was interesting with the magnetism.. Personaly i met the bigest difficulty in level 8… really hard to pass it ! U should put it in level 15 or 16 !;-) Congratulations for that game .. I really had nice moments. By the way, do u know other games like this one ?
abhilash
in reply to thierry:
try the game SOAP BuBBle on miniclip.com that game is lot better than my one and also there are two parts of that game availabel on miniclip.com AND CONGRATULATIONS for completeing the game
ramesh poreddy
it is nice to escape from lots of hitTest,But…in above example u not escaping from testing with each and every object….instead of that the below code may hel in better way
for(var i=0;i<blue_array.length;i++){
for(var j=i;j<blue_array.length;j++){
if (blue_array[i].hitTest(_root[blue_array[j]])) {
blue_array[j].removeMovieClip();
blue_array[i].removeMovieClip();
blue_array.splice(i, 1);
blue_array.splice((j-1), 1);
}
}
}