Page 1 of 1

ScoreHelp

PostPosted: Fri Dec 17, 2010 2:51 am
by DeveG
how to make ,when the score reachs to 57 the game should goto the other frame

Re: ScoreHelp

PostPosted: Fri Dec 17, 2010 3:53 am
by skydereign
You should search the forums, as I know there are plenty of explanations on how to do score. You need to know how to use variables, and if you do, then this is just a matter of using if.
Code: Select all
if(score>=57)
{
    // change frame or whatever that means
}