How can I write a code that show rate me after 3rd time that I open this app
mintmomeg
Member, PRO Posts: 261
I try to figure out after customer download and open app then close 3 time then 4th time that they open app again will show rate my app
thanks
thanks
Best Answers
-
beefy_clyro Posts: 5,394At the start of the game have an actor changing a game attribute called something like game.timesplayed.
Have a rule that does something like the following;
Load attribute game.timesplayed
Change attribute game.timesplayed to game.timeplayed + 1
Save attribute game.timesplayed
when game.timesplayed = 4
Show rating message
Simples
-
JohnPapiomitis Posts: 6,256make an attribute, have a change attribute behavior by itself in the first scene of your game that changes attribute to attribute+1
when attribute =4
-show rate my app stuff
Answers