Jump to content
McKay Development

xeroz333

Member
  • Posts

    4
  • Joined

  • Last visited

xeroz333's Achievements

  1. I thought my code is broken, but when I received cs2 item trade offer manager can't find the trade offer to show (other stuff like tf2, rust is working fine) the code I use : manager.getOffers(1, (err, sent, received) => { if (err) { console.log('Get offers error: ', err); return; } if (received.length > 0) { for (const offer of received) { if (offer.itemsToGive.length === 0 && offer.itemsToReceive.length > 0) { offer.accept((err, status) => { if (err)return; }); } } }
  2. Hi, I'm using only steam community and trade-offer-manager to send and receive trade offer, but after about a week now I got problem when trade offer set cookie always Not Logged In state while community still, so I follow example : https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/blob/master/examples/storehouse-steam.js and fixed the problem, but I still not understand why It need to login with steam user and create new web login session.
×
×
  • Create New...