Hello,
So in my game, I want something to happen when a player first opens the application.
Afterwards, though, if the player closes and starts the application back up again, the thing will no longer happen anymore.
I have it where there is a blank frame at startup, if variable "First_Startup" is greater than 1, then it jumps to a special frame.
If "First_Startup" is less than or equal to 1, then it jumps to a regular frame.
I have it where "First_Startup" is set equal to 2 on a later frame, in order to make any subsequent launches go straight to the regular one.
My issue is: how do I store this value so it is less than or equal to 1 when the application launches for the first time?
Is it possible to do this?
Also, is there a different way to do this whole thing that might be easier?