My First app with continuos score counting

hi
guys i have a bit of programming knowledge and i have started on this new app what is a lot like the rag doll game. what i am trying to achieve is for when the game starts, i want the score to increase. that is basically it until the man hits the dagger and then i want the score to stop.
i have followed what kirkland posted and i am having the same problem as kirkland. can any body help me more or can anybody have a look at the project and do it for me.
guys i have a bit of programming knowledge and i have started on this new app what is a lot like the rag doll game. what i am trying to achieve is for when the game starts, i want the score to increase. that is basically it until the man hits the dagger and then i want the score to stop.
i have followed what kirkland posted and i am having the same problem as kirkland. can any body help me more or can anybody have a look at the project and do it for me.
Comments
Cheers
Hope this helps.
and to possessive gaming what bit does the game time big come into it tell me
Cheers.
Here's the link for it, it's free so you can look at it
http://itunes.apple.com/us/app/glow-dodge/id417601976?mt=8&ls=1
What I did was I had and an integer attribute called "Start Timer"
When the player hits the start button, or what ever starts your game, change "Start Timer" to 1
Another rule where when "Start Timer"=1 and "Game score" is greater than or equal to 0, every .1 seconds (or whatever you want) change "Game Score" to "Game Score" +1, or however many you want
Then once player hits the enemy, dagger or whatever, Change "Start Timer" to -1
Then i had another rule that said when "Start Timer"=-1 then Change Scene
I hope this works!