Jump to content
McKay Development

Search the Community

Showing results for tags 'node-steam-user'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News & Announcements
    • Releases & Updates
  • Help & Support
    • General
    • Guides
    • node-steam-user
    • node-steamcommunity
    • node-steam-tradeoffer-manager
    • node-steam-session

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Skype


Location


Interests

  1. Hello, Is it possible to know if a game has trading cards from its appid? thanks
  2. Guest

    fix for handlers

    Hi, i fixed my issue https://dev.doctormckay.com/topic/1949-node-steam-user-v-4/page-2 The error was found in existing handlers checking. If you'll use a few accounts you can see that handlers length will be equal to accounts count. You will be able to add this code in your module for fix this https://github.com/DoctorMcKay/node-steam-user/blob/v4/components/classes/HandlerManager.js#L21 if( this._handlers.hasOwnProperty(msg) && this._handlers[msg].length >= 1 ) { return; }P.S. In the steam-user v 4.0. don't work method gamesPlayed() . How can i fix it ? UPDATE: login with steamguard don't work too. Always get error "Error: Already logged on, cannot log on again"
  3. leoptu

    HELP

    I do not know if this is the right area for this, I'm new here .. But someone has available, some kind of automatic Steam Account Creator?
  4. Hello, sorry for stupid post but I have question why after use this code second time console.log print the same information twice? 3 turns on 3 times when I use in other place 'loggedOn' I see again console.log(this.informations) in other function. Someone can tell me why and what I can to do with that? Sorry for my rip English and code. { let p = new Promise((resolve,reject)=>{ this.steam.logOn(this.account_details); this.steam.on('loggedOn', () => { this.steam.setPersona(SteamUser.Steam.EPersonaState.Online); this.informations.steamID=this.steam.client.steamID; this.informations.accountid=this.steam.steamID.accountid; console.log(this.informations); this.steam.logOff(); setTimeout(()=>{ resolve(true); },1000); }); }); return p.then((resolve)=>{ console.log(`...`); }); } Console:
  5. Hi, how can i create a new proto for my method ? For example i need to use method FriendsList.GetFriendsList#1 I use client._sendUnified("FriendsList.GetFriendsList#1", { bConstMethod: !0 }, body => { console.log(body) })But i get the error "Cannot read property 'encode' of undefined". What i need to do for using my methods through steam-user ?
  6. Error: Already logged on, cannot log on again Why crashing script? :// after hours
  7. Any way add game like CS GO (ID 730) in my new account use node ? Now my HB works only if i run 1 time game. After this HB works perfect.
  8. Guest

    node-steam-user v 4

    Hi, when do you planning release node-steam-user v 4 ?
  9. Hello, can I somehow interact when one of my friends gets online? best regards Kingnemehl
  10. Hello, I don't really know if I'm doing it right. I have VPS (where I idle steam game hours) and I have 2 the same idle scripts on VPS (different IP) and on local PC. Sometimes I need to run idle script on local PC without killing session on VPS, but I getting error: LoggedInElsewhere, and I can't login with local PC, so I decided to try kickPlayingSession. using this script: click bot.setPersona(SteamUser.EPersonaState.Offline); bot.kickPlayingSession((callback) => { console.log(callback) }); bot.gamesPlayed(this.games, true);then I getting crash in my app with: Error: Cannot kick other sessionbut orginal session getting error too: LoggedInElsewhere, but its not crashing can you please help me what I'm doing wrong here.
  11. I want handle 'FriendMessagesClient.NotifyAckMessageEcho#1' message, it's possible?
  12. Guest

    Display link like steam

    https://gyazo.com/10cec7112e61627598031bf00b26c388 When I send a link through node steam-user it just send the text, when I send a link through Steam, then it is displayed in expanded form, how can I send the link so that it appears as a steam?
  13. Hello, I'd like to ask if there is something like getGameBadgeLevel, but for another user.
  14. i am trying to get the current xp of a user and the xp required to achieve a level but i don't know how to see how much xp they currently have? is there something built into steam-user or should i use another module? here is my code for the command function level(steamID, level){ client.getSteamLevels([steamID], function(results){ console.log("level: " + results[steamID] + "xp: " + results[steamID].xp); // just gives me undefined for the result for xp if(level === undefined){ level = results[steamID]; } if(level >= results[steamID]){ client.chatMessage(steamID, "You would need " + /*xp required here*/ + "more xp for level " + level); } else{ client.chatMessage(steamID, "Please enter a higher number"); } });}
  15. how can i send a message to group using gid or url?
  16. I don't understand what to put in the username and password fields, My main steam account? I've got it logged it but i left the two fields and twoFactorCode Blank. Do I manually register a new steam account through steam? I'm trying to make a trading bot. I understand this is a stupid question, any help would be appreciated.
  17. Hello! Added possibility send custom headers for any request in the library. https://github.com/DoctorMcKay/node-steam-user/pull/194 - Please merge it.
  18. hello i need the inventory value from a Steamid64. How do i do that. Sry that iam asking but iam kinda new here thanks for ur help
  19. Since the latest UI update I'm not able to get this event, does anyone know what changed? I can't even get a simple console.log out of it anymore.
  20. I got loginKey after first login with twofactorcode, and then i was loggining with this loginKey, but after time i got this error: InvalidPassword. Password was valid! I removed line with loginKey option, and typed my twofactorcode and everything is fine for the moment, why did it throw invalidPassword? Thanks!
  21. Hey, I have a problem with changeEmail function. It worked for me untill 2 October 2018, but now when I am trying to use it, it says Access Denied. Can you check it and tell me what happened?
  22. hello every one, i make promptSteamGuardCode is true so i can remove the SHAREDSECRET from my servers and i input the Guardcode every time now i want make the same thing to my accountName and password, so i can remove my USERNAME and PASSWORD from the servers, i thought it is safe. haker can't get my account after he get my servers. so , what should i do now , i search from the google and i get a way to use readline but it is so hard to me, may be i can get a easy way from here.
×
×
  • Create New...