Hey all,
This is probably an incredibly simple thing to create but I just don't think I'm smart enough which could end up being really embarrassing. Basically, what I'm trying to do is make a game where every 80000 points earned, you gain an extra life. I just don't know how to code that in the event system. Any help will be much appreciated and will result in a credit in the game. Thank you!
Have 2 global variables, your normal Score and the counter for lives, we can call Score2.
As you gain points, add to Score and Score2 at the same time.
If Score2 = 80,000, add 1 to Lives, set Score2 to 0.
Develop games in your browser. Powerful, performant & highly capable.
Thank you! I'll look into it tomorrow.