Jump to content
McKay Development

Lukasz

Member
  • Posts

    10
  • Joined

  • Last visited

Everything posted by Lukasz

  1. Maybe it ll help someone I need just sticker names and img src after trade don't really need ids, I get them from getReceivedItems([getActions, ]callback) getActions - Optional. If true, then the descriptions of the received items will be loaded from the WebAPI in order to populate the items' actions. Default false. callback - Required. A callback to be invoked when complete. err - An Error object on failure, null on success items - An array of EconItem objects that you received. v1.19.0 or later is required to use getActions. Can be called on an accepted offer to retrieve item data about the items you received, including names, descriptions, and new assetids. Will not include any actions (e.g. the CS:GO inspect link) unless getActions is true.
  2. Hi Heloo every one I have a question, is there a way to check the names of stickers by their id? { "stickers": [ { "slot": 0, "sticker_id": 4794, "wear": null, "scale": null, "rotation": null, "tint_id": null, "offset_x": null, "offset_y": null, "offset_z": null, "pattern": null }, { "slot": 1, "sticker_id": 4762, "wear": null, "scale": null, "rotation": null, "tint_id": null, "offset_x": null, "offset_y": null, "offset_z": null, "pattern": null }, { "slot": 2, "sticker_id": 4782, "wear": null, "scale": null, "rotation": null, "tint_id": null, "offset_x": null, "offset_y": null, "offset_z": null, "pattern": null }, { "slot": 3, "sticker_id": 4741, "wear": null, "scale": null, "rotation": null, "tint_id": null, "offset_x": null, "offset_y": null, "offset_z": null, "pattern": null } ], "keychains": [], "accountid": null, "itemid": "43163857952", "defindex": 10, "paintindex": 904, "rarity": 3, "quality": 9, "paintwear": 0.2513757348060608, "paintseed": 743, "killeaterscoretype": 0, "killeatervalue": 0, "customname": null, "inventory": 3221225475, "origin": 8, "questid": null, "dropreason": null, "musicindex": null, "entindex": null, "petindex": null }
  3. Ooh, something new for me, awesome thanks ❤️
  4. Hi all, I have a question, tradeInitTime in getExchangeDetails([getDetailsIfFailed, ]callback) - tradeInitTime - A Date object representing when Steam began processing the item exchange. If this trade was held, then this is the time when Steam began removing items from both parties' inventories, i.e. the time when the trade went into escrow. but this is a return in my local timezone and I want this value to calculate when item ll be tradeable (always 7GMT). Is there a way to switch this tradeInitTime to GMT instead of local? Or maybe there is a way to just get the traeable_after time Thanks
  5. Hello everyone I have a question after installing steam-tradeoffer-manager I got - 8 vulnerabilities (3 moderate, 5 high) Is it safe to use? Is there a fix? # npm audit report lodash.pick >=4.0.0 Severity: high Prototype Pollution in lodash - https://github.com/advisories/GHSA-p6mc-m468-83gw No fix available node_modules/lodash.pick cheerio 0.19.0 - 1.0.0-rc.12 Depends on vulnerable versions of css-select Depends on vulnerable versions of lodash.pick node_modules/cheerio steamcommunity * Depends on vulnerable versions of cheerio Depends on vulnerable versions of request node_modules/steamcommunity steam-tradeoffer-manager * Depends on vulnerable versions of steamcommunity node_modules/steam-tradeoffer-manager nth-check <2.0.1 Severity: high Inefficient Regular Expression Complexity in nth-check - https://github.com/advisories/GHSA-rp65-9cf3-cjxr No fix available node_modules/css-select/node_modules/nth-check css-select <=3.1.0 Depends on vulnerable versions of nth-check node_modules/css-select request * Severity: moderate Server-Side Request Forgery in Request - https://github.com/advisories/GHSA-p8p7-x288-28g6 Depends on vulnerable versions of tough-cookie No fix available node_modules/request tough-cookie <4.1.3 Severity: moderate tough-cookie Prototype Pollution vulnerability - https://github.com/advisories/GHSA-72xf-g2v4-qvf3 No fix available node_modules/request/node_modules/tough-cookie 8 vulnerabilities (3 moderate, 5 high) Some issues need review, and may require choosing a different dependency.
  6. Lukasz

    GlobalOffensive

    Hi Doc, Hi guys Stickers: [ { "slot": 0, "sticker_id": 4693, "wear": null, "scale": null, "rotation": null, "tint_id": null, "offset_x": null, "offset_y": null, "offset_z": null, "pattern": null }, Can you guys tell me if anyone know how to assign sticker_id to sticker name
  7. Hi Doc, Hi all I have that problem that every time my bot works for some few hours it's got 403 and i need to restart my bot This is how I log in. Did I do something wrong? Am I missing something? const client = new SteamUser(); const community = new SteamCommunity(); const manager = new TradeOfferManager({ steam: client, community: community, useAccessToken: true, language: 'en', pollInterval: 30000, cancelTime: 30 * 59 * 1000 }); const logInOptions = { accountName: config.accountName, password: config.password, autoRelogin: true, twoFactorCode: SteamTotp.generateAuthCode(config.sharedSecret), }; client.logOn(logInOptions); client.on('loggedOn', () => { console.log('Logged on'); client.setPersona(SteamUser.EPersonaState.Online); client.gamesPlayed([730]); // CS:GO game ID }); client.on('webSession', (sid, cookies) => { manager.setCookies(cookies); community.setCookies(cookies); handleWebSession(); setInterval(handleWebSession, 15000); });
  8. Thanks a lot fixed my issue ❤️
  9. Hi I have a problem when I use acceptConfirmationForObject I get a TypeError: manager.acceptConfirmationForObject is not a function version 2.10.6 manager.acceptConfirmationForObject(config.identitySecret, id, (err) => { ^ TypeError: manager.acceptConfirmationForObject is not a function
×
×
  • Create New...