I am making a shooter game using a crosshair, prob is I would like it to stop at the count of 2500 and got to frame 3
the code I have is…
if(this.hitTest(_root[“face”+i])&&_root[“face”+i].dead==0)
{
if (_root.score==100)
gotoAndPlay(3);
_root.score+=50;
_root[“face”+i].gotoAndPlay(2);
}
And I have got this part to work no probs…
{
if(this.hitTest(_root[“face”+i])&&_root[“face”+i].dead==0)
{
_root.score+=50;
_root[“face”+i].gotoAndPlay(2);
}
}
and for the life of me I cannot get it any further I know I am missing something here, but I can’t see what it is
If anyone can tell me I would be a happy vegimite
thanks Kathie