Hi, I have a question. How can I find out the nickname that sent the message through Steam-user? Here is my code:

console.log("Получено сообщение: " + steamID.getSteam3RenderedID() + ": " + message); 

When sending a message, writes my SteamID, and you need a nickname, if that is possible.

    1 answer 1

    Found the answer, just use this code:

     client.getPersonas([steamID], function (persona) { partnerName = persona[steamID].player_name; console.log(partnerName); });