In my game I have a score-
I want to add high score but dont know how????
When you complete my game it goes back to the start menu.
I want it so that when you play the level again it has your last score as the high score as well, but the actual score sets to 0.
If you keep replaying the level your high score= your highest ever score.
PLEASE HELP!!!
Offline
dave1998 wrote:
In my game I have a score-
I want to add high score but dont know how????
When you complete my game it goes back to the start menu.
I want it so that when you play the level again it has your last score as the high score as well, but the actual score sets to 0.
If you keep replaying the level your high score= your highest ever score.
![]()
PLEASE HELP!!!
First, get this code:
when gf clicked set [highscore v] to (0)After that, run this code each time you finish a level:
if <(score) > (highscore)> set [highscore v] to (score) endAnd that should do it! I hope that this helps!
Offline
ErnieParke wrote:
dave1998 wrote:
In my game I have a score-
I want to add high score but dont know how????
When you complete my game it goes back to the start menu.
I want it so that when you play the level again it has your last score as the high score as well, but the actual score sets to 0.
If you keep replaying the level your high score= your highest ever score.
![]()
PLEASE HELP!!!First, get this code:
when gf clicked set [highscore v] to (0)After that, run this code each time you finish a level:if <(score) > (highscore)> set [highscore v] to (score) endAnd that should do it! I hope that this helps!
CHEERS Ernie!
Offline
dave1998 wrote:
ErnieParke wrote:
dave1998 wrote:
In my game I have a score-
I want to add high score but dont know how????
When you complete my game it goes back to the start menu.
I want it so that when you play the level again it has your last score as the high score as well, but the actual score sets to 0.
If you keep replaying the level your high score= your highest ever score.
![]()
PLEASE HELP!!!First, get this code:
when gf clicked set [highscore v] to (0)After that, run this code each time you finish a level:if <(score) > (highscore)> set [highscore v] to (score) endAnd that should do it! I hope that this helps!CHEERS Ernie!
![]()
It was nothing.
Offline