Jump to content
McKay Development

Ryu

Member
  • Posts

    6
  • Joined

  • Last visited

Everything posted by Ryu

  1. Ryu

    Get item phase

    I only get paintindex with that, how can I know which phase is which paintindex?
  2. Ryu

    Get item phase

    Hi, I was wondering if it's possible to get all information about csgo items in steam inventory, including float, pattern and phase and how that can be done? Thank you! Ryu
  3. Hi I receive the error "invalidParam" after: await this._handler.startSessionWithCredentials; All the credentials are correct, I've ran the code for a long time with no problems but today this is happening, with no changes. Thank you, Ryu
  4. I guess I can not save and reuse the cookies because they expire after a few seconds. So if I understand, I can use refreshToken to log in but I can't create trades?
  5. #Logged into Steam #Error not logged in I'm trying to log into the bot with username, password and 2fa manually, save the refreshToken and cookies, and reuse them anytime I restart the bot. client.logOn({"refreshToken": refreshToken }); client.on('loggedOn', async (details) => { console.log("Logged into Steam"); let manager = new TradeOfferManager({ "steam": client, "domain": "example.com", "language": "en" }); manager.setCookies(cookies, (err) => { manager.getInventoryContents(730, 2, true, (err, inventory) => { if (err) { console.log(err); return; } if (inventory.length == 0) { // Inventory empty console.log("CS:GO inventory is empty"); return; } console.log("Found " + inventory.length + " CS:GO items"); }) }) });
×
×
  • Create New...