KASSINO Posted November 7, 2021 Report Share Posted November 7, 2021 Hello! I got this code for now: bot.on('loggedOn', function() { console.log("["+ Date() + " " + this.username + "] Logged into Steam"); bot.setPersona(SteamUser.EPersonaState.5); bot.gamesPlayed(this.games); and I want to have a custom status saying for example "idling hours" and in the same time have a list of games to idle, the list of games is done already but I can't get the custom status to work with the games, I know you can idle more then 33 games but at that point it doesn't count hours anymore so I want the custom status to be last to be "idled" bot.gamesPlayed(this.games); bot.gamesPlayed("idling hours"); but it didn't work Quote Link to comment Share on other sites More sharing options...
Dr. McKay Posted November 8, 2021 Report Share Posted November 8, 2021 This should make the displayed game "Idling Hours", but sometimes Steam can be temperamental when it comes to custom game names. bot.gamesPlayed(['Idling Hours', ...this.games]) Quote Link to comment Share on other sites More sharing options...
KASSINO Posted November 11, 2021 Author Report Share Posted November 11, 2021 On 11/8/2021 at 2:30 AM, Dr. McKay said: This should make the displayed game "Idling Hours", but sometimes Steam can be temperamental when it comes to custom game names. bot.gamesPlayed(['Idling Hours', ...this.games]) Hey! I've did it, but just now I realised it didn't make me any hours, I still have the custom status. Quote Link to comment Share on other sites More sharing options...
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.