Jump to content
McKay Development

EnelGy

Member
  • Posts

    38
  • Joined

  • Last visited

Everything posted by EnelGy

  1. I have full trade-links in my database and i want to use them to create direct trade offer
  2. mainly i dont understand how to send offer that we are not giving any items, but opponent is giving... please someone post the code here (would be really cool if you included the sending trade with trade-link i get all the time this error(after changing var myItem = myInv['5']; to var myItem = myInv[null];
  3. How can i create new offer with trade-link of the partner ???
  4. How to convert this .newassetid to name of an item ??
  5. Please post here node-steam-tradeoffer-manager documentation / library, i cant find it I need to know how to get partners steam profile url link
  6. where to set the logonID ?? in logon.js ???
  7. Hello I have seen the answer on this "And the reason is because you need to set logonID to something unique in logOn if you're logging into the same account from the same public IP." Can you be with this answer more specific ??? What should I do here ? let logonId = details.logonID; if (logonId) { let maxUint32 = Math.pow(2, 32) - 1; if (typeof logonId == 'string' && logonId.match(/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/)) { logonId = StdLib.IPv4.stringToInt(logonId) ^ PRIVATE_IP_OBFUSCATION_MASK; } else if (typeof logonId == 'number' && logonId > maxUint32) { this._warn(`logonID ${details.logonID} is greater than ${maxUint32} and has been truncated.`); logonId = maxUint32; } }
×
×
  • Create New...