so now, i am using a scoreing system. i created an actor for the score image (rather than using text). so i made two variables, score1 and score2. (these are actor variables). then on the actor control for the score i put:
add event>create actor>script editor
- Code: Select all
score = 0;
then i put:
add event>draw actor>script editor
- Code: Select all
if(score2 = 1)
{
ChangeAnimation("scoretwo", "score1", NO_CHANGE);
}
then when i go to game mode it will put it straight to 1 instead of keeping it at 0.
how can i do a scoring system better? or how can i fix this problem?