• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

Move to different rooms depending on you score

H

hinchpop

Guest
Hi I was just wondering if someone might be able to help. I'm wanting to have my player when they have 0 lives but say the score is over 1000 they go to a game complete room and if it's less than 1000 then they go to a game over room.

Currently this is my code that I learnt from game maker tutorial.

if (lives <1)
{
room_goto(GO);
}
if (global._Score >= 1000)
{
room_goto(GC);
}

Thank you in Advance
 
Top