Jump to content
McKay Development

Set Games Playing


Johny

Recommended Posts

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!

 

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...