RobotBob Posted August 6, 2018 Report Posted August 6, 2018 ClientGamesPlayed does not seem to work, I made sure the bot's privacy settings allowed for it client.gamesPlayed(440); Quote
ekifox Posted August 23, 2018 Report Posted August 23, 2018 const SteamUser = require('steam-user') const steamUser = new SteamUser() steamUser.logOn({ account_name: '123', password: '123' }) steamUser.on('loggedOn', details => { steamUser.setPersona(SteamUser.EPersonaState.Online) steamUser.gamesPlayed(440) }) This simple code does not work at all. The bot is authorized and details are full of information. But my profile is labeled as "not online" and TF2 does not appear in the games played. Quote
Dr. McKay Posted August 24, 2018 Report Posted August 24, 2018 const SteamUser = require('steam-user') const steamUser = new SteamUser() steamUser.logOn({ account_name: '123', password: '123' }) steamUser.on('loggedOn', details => { steamUser.setPersona(SteamUser.EPersonaState.Online) steamUser.gamesPlayed(440) }) This simple code does not work at all. The bot is authorized and details are full of information. But my profile is labeled as "not online" and TF2 does not appear in the games played. Make sure the privacy settings allow people to view games. Quote
ekifox Posted August 25, 2018 Report Posted August 25, 2018 Make sure the privacy settings allow people to view games.Everything is open, but nothing works. Quote
Revadike Posted August 30, 2018 Report Posted August 30, 2018 Are you sure you're checking the right profile? Log the account's steamid64 with steamUser.steamID.getSteamID64(). 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.