CUTONI8 Posted April 28, 2020 Report Posted April 28, 2020 hi i want to know if user cant trade with my bot(for any reason). how i handle it? i watch topic and say to use getUserDetails . if i call createOffer and then getUserDetails any problem occour if i dont send offer? client.on('friendMessage', (steamID, message) => { if(message=='buy'){ manager.loadInventory(440, 2, true, (err, inventory) => { if (err) { console.log(err); } else { const offer = manager.createOffer(steamID); offer.getUserDetails((err,me,them)=>{ if(err){ client.chatMessage(steamID,"cant trade!"); } else{ client.chatMessage(steamID,"you can trade go for choose items!"); } }) Quote
Dr. McKay Posted April 28, 2020 Report Posted April 28, 2020 No problem, that's the recommended way to see if you can trade with someone. CUTONI8 1 Quote
Recommended Posts
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.