Puffin217 Posted June 18, 2017 Report Posted June 18, 2017 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? Quote
Recommended Posts
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.