Jump to content
McKay Development

How to log when somone messages you with the name.


Puffin217

Recommended Posts

i would like my console output to be 

 

[sTEAM]We have received a message from [sTEAMUSER]

 

currently i have.

 

function getreplymessage(usermessage) {
usermessage = usermessage.toLowerCase();
for (var i_a = 0; i_a < messageresponse.length; i_a++ ) {
for (var i_b = 0; i_b < messageresponse[i_a][0].length; i_b++ ) {
if (usermessage == messageresponse[i_a][0][i_b]) {
return messageresponse[i_a][1];
}
}
}
    console.log('[sTEAM]We have received a message!');
return '';
}

friends.on("friendMsg", function(user, msg, type){
if(type == Steam.EChatEntryType.ChatMsg){
var reply = getreplymessage(msg);
if (reply != ''){
friends.sendMessage(user, getreplymessage(msg));
}
}
}
,);

 

But it only logs that we have received.

'

How would i log that i received a message with the name of the person?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...