Search Unity

Question How to cheack if this new player

Discussion in 'Authentication' started by gugjuiu19, Apr 25, 2023.

  1. gugjuiu19

    gugjuiu19

    Joined:
    Jul 15, 2021
    Posts:
    5
    How to cheack if this new player or is old player
     
  2. RandolfKlemola

    RandolfKlemola

    Unity Technologies

    Joined:
    May 1, 2020
    Posts:
    130
    Hi @gugjuiu19 ,

    Thanks for reaching out! Are you using Analytics, by any chance? That is always a great way to find out of it's a new player or not. For example, if you know their USER_ID you can use this query in your SQL Data Explorer to find out when they sent their 1st event:


    SELECT
    USER_ID,
    PLAYER_START_DATE
    FROM
    EVENTS
    WHERE
    USER_ID = "XXXXX";


    Let me know if you have further questions.

    Best,
    Randy
     
    Julian-Unity3D likes this.