Jump to content
McKay Development

Problem when binding ip.


Recommended Posts

Hello,

 

I need change other ip and have problem:

 

...
var steamClient = new SteamClient.CMClient();
BOT.ip = 'XXX.XXX.XX.XX';


console.log(colors.green('Bind ip: '+BOT.ip, 'steamClient'));
steamClient.bind(BOT.ip);
steamClient.connect();

steamClient.on('connected', function(){

    var user = new SteamUser(steamClient, {
        dataDirectory: __dirname,
        singleSentryfile: true,
        promptSteamGuardCode: false,
        enablePicsCache: true
    });
    
    var community = new SteamCommunity({
        timeout: 30000,
        userAgent: 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36',
        localAddress: BOT.ip
    });
    
    var TradeOfferManager = new clearTradeOfferManager({
        steam: user,
        community: community,
        domain: BOT.username,
        language: 'pl',
        pollInterval: 1000,
        cancelTime: 600000,
        cancelOfferCount: 16,
        cancelOfferCountMinAge: 300000,
        globalAssetCache: true,
        pendingCancelTime: 32000
    });
...
 
Is this correct?

 

When running 100 bots, on 100bots/ip, 60th bot received error HTTP error 429.

When running 100 bots, on 25bots/ip, 60th bot received error HTTP error 429.

Edited by MrPandeu
Link to comment
Share on other sites

So what's the reason?

 

Everytime I'm trying to turn on all of my bots (100), 60 of them loggin and the reset are getting HTTP error 429.

 

Now I turnen on all of 100 bots, keeping the 5 sec delay after every 1 bot logging in and 300 sec delay after every 25 bots and also 40 minutes delay after 50 logged bots, but now they're getting HTTP error 403 while trying to send trade offer.

 

Any ideas what could be wrong?

 

And one question to what I've wrote above

Do delays of bots logging are fine or can I manage somehow to loggin them somehow faster?

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...