You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
letretryTaskText=isSecondAttempt ? "You\'ve been away too long, and it was your second attempt. Unfortunately you wont be able to earn any more coins." : "You\'ve been away too long, try again for a chance to earn more coins."
@@ -1005,7 +1008,7 @@ var showExitTaskDialog = function(context) {
1005
1008
}
1006
1009
1007
1010
varshowTaskCompleteDialog=function(context){
1008
-
lettaskCompleteText="You've reached the minimum required number of completed trials but due to an interruption you cannot progress through the rest of the trials. You will still recieve your bonus payment.";
1011
+
lettaskCompleteText="You\'ve reached the minimum required number of completed rounds but due to an interruption you cannot progress through the rest of the rounds. You will still recieve your bonus payment.";
1009
1012
1010
1013
showBottomScreenPanel(
1011
1014
context,
@@ -1019,6 +1022,26 @@ var showTaskCompleteDialog = function(context) {
1019
1022
);
1020
1023
}
1021
1024
1025
+
varshowTaskInterruptedDialog=function(context){
1026
+
// check to see if this is the first attempt and show a different message explaining that they cannot return if its the 2nd attempt
1027
+
letcache=GameCache.cache;
1028
+
vartaskInterruptedText="Ready to continue? Keep going in the next 2 mins to keep collecting coins.";
1029
+
if(cache!=null&&cache.attemptCount>1){
1030
+
taskInterruptedText="Ready to continue? This is your last attempt to collect more coins.";
0 commit comments