answersLogoWhite

0


Best Answer

Stop setting score.

Set the score on the first level's room creation code.

Set it to a global. variable as well.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: In Game Maker 7 how do you make the score not reset at the beginning of each level?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

In Game Maker 7 how do you reset the score in a platform game?

You have to choose 'set score', and enter 0 in the box.


How do you reset score to zero in game maker 8?

Get a Set Variable Action and in the first field type score and the second type 0. Easy


What is the average lexile score for a fifth grader?

Level 1- beginning to read. Probably at kindergarden level.


When was Score to a New Beginning created?

Score to a New Beginning was created in 2009.


In Game Maker 7 how do you halve the score?

Go to the score tab and drag the "Set Score" action into the action box. Then type "score/2" without the quotes. Alternatively, you can use the code: score/=2; This works because the score is stored in a variable called score, and you are telling Game Maker to divide this variable by two.


How can you do for losing points in the score of game maker?

As you increase score by adding 1 relative to your previous score, you subtract score by adding -1 relative to your previous score.


Why does my iphone game app data disappear when app is closed. Angry Birds levels reset every time app is closed but game center achievements and bonus levels remain?

we have the same problem, but my angry birds level reset every time i open it back, and nothing remain, includes mighty eagle score and stars score.. sorry, i can't answer it.


What is the code on game maker 8 to set score to 0 if hit by something?

score = 0; Put the code in a collision event.


How do you get the marksman metal in bridge tactics?

get the exact same score as the target score in a level eg) 1500 in level 1


What Is the grade level of a reading score of 1077?

A reading score of 1077 typically corresponds to a 7th-grade reading level.


What is A six letter word beginning with e ending in y that is related with Four Score?

A 'score' is twenty.... so four score is eighty.


How do you enable score on your game maker game?

use:score += 5;etc.anddraw_text(x,y,'Score: ' + string(score));If using noob mode(action blocks) use "set the score" with relative. Also use "draw the score" or "set the window mode".