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.