At 1/15/06 11:26 AM, DannyMac910 wrote:
yo i made a game using a tutorial on NG, it got blamed, furthermore i was wondering if anyone knew how to put a timer in the game and a score box or any other action script i can use to help make my game better. thank for da help
For score you could put
onClipEvent(load){
_root.score = 0
}
onClipEvent(enterFrame){
if(stuff happens){
_root.score++;
}
and then make a dynamic text box with the var name of score.