Jump to content
McKay Development

Syed

Member
  • Posts

    5
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Syed's Achievements

  1. Thank you sir, problem resolved
  2. No, Im just logged in using our bot class SteamBot { constructor(logOnOptions) { this.client = new SteamUser(); this.community = new SteamCommunity(); this.manager = new TradeOfferManager({ steam: this.client, community: this.community, language: "en", }); this.logOn(logOnOptions); } logOn(logOnOptions) { this.client.logOn(logOnOptions); this.client.on("loggedOn", () => { console.log("Logged into Steam"); this.client.setPersona(SteamUser.EPersonaState.Online, "Bot-name"); this.client.gamesPlayed(730); }); this.client.on("webSession", (sessionid, cookies) => { this.manager.setCookies(cookies); this.community.setCookies(cookies); this.community.stopConfirmationChecker(); }); .. . . . . .. . const bot = new SteamBot({ accountName: process.env.STEAM_USERNAME, password: process.env.STEAM_PASSWORD, twoFactorCode: SteamTotp.generateAuthCode(process.env.SHARE_SECRET), rememberPassword: true, });
  3. We have on account for steam bot, we used that account in our local server as well as stagging server and getting this error Error: LoggedInElsewhere, can you please suggest, is there any method available for forceful login, or how can avoid this error
  4. Can any one help me? I have a bot who can accept and send any offers to any steam user (term & condition apply). but the problem is , I want, when user login into our platform we fetch user inventory using steam api, I want user send offer to user bot using our platform. please help, how can I implement these flow or suggest better flow,
  5. My problem is when i send any offer from the steam official site it worked, but I want to create a site like skin port, I created a bot who accept any offer and receive any offer. I want any user who are register on my platform they can send trade offer to our bot with using our native platform like skin port https://skinport.com/
×
×
  • Create New...