Hi,
We would like to know how to implement a certain situation.
We want to ban players after 100 days. Like the span of our game is 100 days. after 100 days( as we cant delete our game) we want to ban those players who had the game for 60 days and did not complete it.
How do we implement it? we are storing players by device id. we will be implementing a centralized leaderboard for ios and android later on using device id through playfab.
(we are at the gameplay development stage)
Answer by Brendan · Apr 07, 2019 at 05:42 PM
Well, you could create a segment with the rule First Login Greater Than 51000 minutes (60 days) AND some value that you use to indicate that the game is not complete (a statistic or Tag), where the action is Ban User. But please be very, very cautious with how you configure this. As soon as you save this segment, you will trigger evaluation, and if you have that set as the action, you will ban every user you have in your segment. What you may want to do is to do the evaluation with no action at all first, to see how many users are in the segment (as a sanity check).