Jump to content
McKay Development

Lukasz

Member
  • Posts

    5
  • Joined

  • Last visited

Everything posted by Lukasz

  1. 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
  2. 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); });
  3. Thanks a lot fixed my issue ❤️
  4. 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...