Event On Openning App

Hello,
Is there an event that plays only when you open up an app. I mean it plays once, and only plays again when the person opens the app again, so not an event begin play node. I have been searching for a while and cant seem to find any documentation or questions about this.
Any help appreciated, thanks

what do you want that event do for you?

you can do that on begin play of the game mode then set a boolean to true after that. and then save that boolean.

so every time you open the app on begin play of game mode you can load that boolean and see if that is true or false . if true don’t execute that event if false it means that this is the first time you open the app :)))

it is kinda complex but will diffidently work :smiley:

oh you asked every time you open the app.

so if begin play of game mode is executed more than once you can check the same boolean.

sorry I do not know a better way :)))))

Ya, the boolean idea is what I thought of at first, but my game has several levels so they reset the booleans on loading a level. Even if I use save, that still would not work. Maybe even a (opening app) function or something would be useful.

To clarify, I want to load a reward video ad on start up, just so that I guarantee one impression. I already have the video ad ready, I just need an event or function or something to indicate to my blueprint that the app was just opened.