Jump to content
McKay Development

TomYoki

Member
  • Posts

    82
  • Joined

  • Last visited

Everything posted by TomYoki

  1. How is that supposed to change a single thing? The code literally states that on new confirmation it will auto confirm it.
  2. just call manager.getExchangeDetails(); https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOffer#getexchangedetailsgetdetailsiffailed-callback
  3. Hello, I was wondering if it's possible to know if friend-request has been accepted after sending an invite. I looked through the module docs and couldn't find anything, but perhaps I've missed something? Thanks in advance.
  4. ...Maybe give google translate a shot?
  5. https://github.com/DoctorMcKay/node-steamcommunity/wiki/CSteamUser#commentmessage-callback
  6. Are you wanting to cancel existing offers after X time has passed? If so, have a look at constructor options: https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOfferManager-@-v1#constructoroptions
  7. Hello, I was wandering around my group and noticed that my bots have stopped inviting users to my group after a successful trade (3 bots in total, which do around 100 trades a day with complete strangers). In fact, this is not only my group, I tried to make it invite users to my other group (which has only 55 members) and it still didn't invite them. Is it something to do with my code or has something changed recently? code bit: community.inviteUserToGroup(user, config.groupToInvite, function(err){ if(err){ console.log("Error with inviting user to group\n"+err); } else { console.log(`Invited ${user} to ${config.groupToInvite}`); }
  8. ...You're an idiot. They both use steam market api.
  9. re-install steam-client, should be fine after. (also, don't run a gambling site.)
  10. You cannot avoid the risk of a ban on your bot accounts, and every other account connected IF you're running a gambling site. It does not matter what API you're using, this is just ridiculous. You're still using steam to manage your gambling business, the only way you can do this if you don't involve steam at all (aka running online casino). And match betting was never banned, gambling was. Of course, if Valve would want to they could go after these sites as well, knowing their lawyers, but they are not going to bother with such sites.
  11. Using steam for managing gambling sites is against ToS, it doesn't matter if you convert them or not. Setting timeouts won't matter - as far as I'm sure steam sends moderators around teh interweb to check for such sites. A lot of the time big gambling site bots get banned and they cannot do anything about it. Here's original post about ToS change: http://store.steampowered.com/news/22883/
  12. There is none, just save the info somewhere else. (Like winston)
  13. So just make a variable to pause it, then add if statement(s)
  14. Event for sending a message... You sure you're not looking for a function to send a message?
  15. Hello, I was wondering if there's something like manager.cancelOffer(offerID); or something like that. I went through the trade-manager docs and found nothing that would help me cancel outgoing offers, best of what I found was constructor options to cancel offers & poll-data to keep offer data, but none of which is what I'm looking for. Is there anything that would let me push trade offer id's into an array and cancel them 1by1? Thanks in advance!
  16. https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/Real-Time-Trades tells everything perfectly, there are no advantages in using real-time trades, in fact there are only disadvantages
  17. offer.itemsToReceive.forEach(function(item) { if (item.appid == "440" && item.market_hash_name == "Scrap Metal") { console.log("It's a bird! It's a plane! IT'S A SCRAP METAL!"); } } ); Something I made you real quick. You can do it the same way for itemsToGive You can also get some of this info out of it: https://github.com/DoctorMcKay/node-steamcommunity/wiki/CEconItem
  18. if (offer.partner.getSteamID64() === 'firsttrustedguysteamid' || 'secondtrustedguysteamid') { is not a valid syntax. If you wish to compare multiple IDs at once you can always put them in array and use indexOf();
  19. Hello, I was wondering if it's possible to cancel all outgoing offers at once? Thanks in advance.
×
×
  • Create New...