I have made a simple start to a game where you are a circle and you have to dodge all the incoming homing missiles. I can add the missiles move them but I want to know if there is any way of making them disapear is they hit each other. here was my that i tried. This code is in the missile frame
for (var i = 0; i<_root.marray.length; i++) {
m = _root.marray*;
if (this.hitTest(m)) {
removeMovieClip(this);
}
but the problem was that it worked fine but becuase it was hitting itself it was removing it straight away. is there any way of stopping this from happening.
anyone
cheers