Nico31 Posted July 12, 2017 Report Posted July 12, 2017 Hi all!Is there any way to idle a game without showing it and just appear as connected in steam?I've tested client.gamesPlayed([0, apptoidle]); client.gamesPlayed([apptoidle, 0]); client.gamesPlayed(['', apptoidle]); client.gamesPlayed([apptoidle, '']); All of them show that I'm playing ${apptoidle} or non-steam game. I need this to change apptoidle periodically without sending notifications that I'm playing any game. Thanks in advance for any help Quote
Vanilla Posted July 12, 2017 Report Posted July 12, 2017 Hi all!Is there any way to idle a game without showing it and just appear as connected in steam? Put your "client.setPersona" as offline (0), and play whatever game you're idling client.setPersona(0); //"0": "Offline", "1": "Online", "2": "Busy", "3": "Away", "4": "Snooze", "5": "LookingToTrade", "6": "LookingToPlay" client.gamesPlayed(753); //playing app 753 Quote
Nico31 Posted July 12, 2017 Author Report Posted July 12, 2017 Put your "client.setPersona" as offline (0), and play whatever game you're idling I didn't think on that xD. But will it show me as connected on steam? I need to handle chat messages too Quote
Vanilla Posted July 13, 2017 Report Posted July 13, 2017 (edited) I didn't think on that xD. But will it show me as connected on steam? I need to handle chat messages too Nope, you will show up as "Offline" and still idling the game.If you decided to do that, you can't use chat messages. There's other way. You can 'Offline' in client, but Online chat via web browser, it will show up as 'Online via web browser' and still idling the game Use steamcommunity 'chatLogon();'https://github.com/DoctorMcKay/node-steamcommunity/wiki/Steam-Chat#chatlogoninterval-uimode Edited July 13, 2017 by Vanilla Quote
Nico31 Posted July 13, 2017 Author Report Posted July 13, 2017 Use steamcommunity 'chatLogon();'https://github.com/DoctorMcKay/node-steamcommunity/wiki/Steam-Chat#chatlogoninterval-uimode Very nice! Thanks Vanilla PS: I love you 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.