Johny Posted May 10, 2023 Report Posted May 10, 2023 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
4049_1572836826 Posted May 10, 2023 Report Posted May 10, 2023 Try call after emit loggedOn event. Quote
TheM Posted May 17, 2023 Report Posted May 17, 2023 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
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.