At 2/9/03 10:28 PM, TriPPinHoBo wrote:
How do you make a score. Like when you hit a place on the target it gives u a 100 points or something. Just a number score
Use variables. Make a Dynamic Text box at the begining and label it Score or something. Now in the thing you want to "hit" place these actions:
onClipEvent (load) {
points = 10;
}
Now put an action where if the Gun or whatever it is, hits it, the points will add up to the score so an action would be
onClipEvent (enterFrame)
{if (this.hitTest(MC, true))
_root.score + points;
}
That might work. I dunno try it out and see.