Jump to content
McKay Development

Recommended Posts

Posted

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!");
          

          }
      })
 

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...