1. I can get the name of the person using this code. But besides his name, he comes in person.
    Code:
    Convert.ToString(GameManager.Instance.GetIdentity(STEAMID))
    --> RedFighter(700000345)

    I dont want this. I just want you to see the nick.

    --> RedFighter

    how can I do it?
    ?
     
  2. PlayerSession.Name
    PlayerIdentity.Name

    Code:
    PlayerIdentity  playerId = GameManager.Instance.GetIdentity(STEAMID);
    string nick = playerId.Name;
     
  3. Thank you so much.