Jump to content
McKay Development

MrPandeu

Member
  • Posts

    14
  • Joined

  • Last visited

Everything posted by MrPandeu

  1. Hello, What is `version` in `json_tradeoffer` from form of tradeoffer? `node-steam-tradeoffer-manager` have set on 4 (https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/blob/master/lib/classes/TradeOffer.js#L297). I checked it while sending offers on steam. If I sent item for friend, `version` is equeal 2, but If I sent offer "item for item" and "nothing for their item", `version` is equeal 3. Any ideas?
  2. You don't need library. https://developer.valvesoftware.com/wiki/Steam_Web_API#GetNewsForApp_.28v0002.29
  3. Hello, Someone have ideas, how Steam can detecting trade bots?
  4. Hello, Is it possible for an item to get back to inventory with other assetid after offer is canceled by a bot?
  5. Hello, My script sometimes return error: events.js:276 throw new TypeError('listener must be a function'); ^ TypeError: listener must be a function at CMClient.removeListener (events.js:276:15) at SteamUser.logOff.SteamUser.disconnect (/root/node_modules/steam-user/components/logon.js:153:14) at SteamUser._handlers.(anonymous function) (/root/node_modules/steam-user/components/logon.js:265:9) at SteamUser._handleMessage (/root/node_modules/steam-user/components/messages.js:189:29) at emitThree (events.js:97:13) at CMClient.emit (events.js:175:7) at CMClient._netMsgReceived (/root/node_modules/steam-client/lib/cm_client.js:271:8) at CMClient.handlers.(anonymous function) (/root/node_modules/steam-client/lib/cm_client.js:379:8) at CMClient._netMsgReceived (/root/node_modules/steam-client/lib/cm_client.js:253:24) at emitOne (events.js:77:13) What's the reason?
  6. File "cellid-XXX.txt" contains id of machine on which bot is turned on, am I right? If yes then does it have any connection with steam-tradeoffer-manger? Is it possible to manipulate with id generating?
  7. 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?
  8. 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.
  9. I own 100 bots and they are split on 4 different ip adresses so on one IP adress there are 25 bots. What's the limit of requests per sec/min from 1 IP adress? And also I have to add that if the bots getting 403 error its not like 25 bots from the same IP adress geting this error, all of 100 bots from 4 different IP adresses getting this error in same time, it's kinda weird for me, cuz I feel like adding additional adress IP make no difference here.
  10. Hello, When does "Error: HTTP error 403" appear? My bots issue those errors really often while trying to send a trade offer. Is it some kind of Steamism again or could be something wrong with my code?
  11. Both, user and bot have CS:GO tab inventory available with items inside. * UPDATE * I find out how to solve the problem. Bot is somehow bugged and he need to get a tradeoffer with a item which he have to accept to be able to send trade offers without these errors (15). Is it steam being steam or is there a way to solve it somehow else?
  12. a ) I give partner steamid + token, so it should not be a problem b ) Token is correct c ) It is ok (no vac, two sides have cs:go inventory). d ) It is ok. hmmm?
  13. My bot is often getting "Error: There was an error sending your trade offer. Please try again later. (15)" after last update of node-steam-tradeoffer-manager. By often I mean like 85% of trades which he's trying to send. What am I doing wrong?
×
×
  • Create New...