question

Talha avatar image
Talha asked

Ban players (devices) from game

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)

unity3dLeaderboards and Statistics
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

·
brendan avatar image
brendan answered

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).

10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.