Johny Posted May 10 Report Share Posted May 10 Hello! I am trying to set my current "Game Playing". This is my code let csgoBuy = 17; client.gamesPlayed(`B> ${csgoBuy}:1 CSGO`); This was working previously, but randomly decided to stop working today. The bot simply logs on and stays in "Online" and never goes to the playing game state. Anyone know why this is happening? It was working previously but now it decided not to. Anything helps! Quote Link to comment Share on other sites More sharing options...
4049_1572836826 Posted May 10 Report Share Posted May 10 Try call after emit loggedOn event. Quote Link to comment Share on other sites More sharing options...
TheM Posted May 17 Report Share Posted May 17 On 5/10/2023 at 6:21 AM, Johny said: let csgoBuy = 17; client.gamesPlayed(`B> ${csgoBuy}:1 CSGO`); Put it like this: client.on('loggedOn', () => { client.setPersona(1); client.gamesPlayed(`B>${csgoBuy}:1 CSGO`, true); }); Should work :D 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.