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. How do I get the names of all available games on steam displaying on the website? Here's my code. It just displays a blank page for like 5 seconds and displays an "Already logged on, cannot log on again" error. How do I properly display it? client.on("appOwnershipCached", () => { let gameArr = client.getOwnedApps(); client.getProductInfo( gameArr, [], (err, apps, packages, unknownApps, unknownPackages) => { for (var appid in apps) { res.send(apps[appid].appinfo.common.name); } } ); });
  2. I got a output from: client.getPublishedFileDetails(1607555098, (err, results) =>{ console.log(results);});So my Question is, can you like artworks with this module or do i have to write a request function?Thanks for your help
  3. 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.
  4. Hello, I have tried multiple github release (from simple javascript to automate advanced json etc). Tested the newest node, npm, node steam and 0.6.8 steam. I can not login with my correct steam credentials on virtual server. I just wanted to idle some hours on 2 titles. Has something happened recently, do they block connections? I cannot pass thru sucessfuly with: steamClient.connect();steamClient.on('connected', function() { steamUser.logOn({ account_name: 'MY_STEAM_LOGIN', password: 'MY_PASSWORD' });}); No guard mails arrive neither... Can you help me please?
  5. Hello. I want to ask about the new chat things like /spoiler /random /code etc.. or the old chat emotes How the bot can use them?
  6. Hello, Is it possible to know if a game has trading cards from its appid? thanks
  7. 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"
  8. 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?
  9. Guest

    node-steam-user v 4

    Hi, when do you planning release node-steam-user v 4 ?
  10. 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 ?
  11. 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:
  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. Error: Already logged on, cannot log on again Why crashing script? :// after hours
  14. Hello, can I somehow interact when one of my friends gets online? best regards Kingnemehl
  15. 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.
  16. I want handle 'FriendMessagesClient.NotifyAckMessageEcho#1' message, it's possible?
  17. Hello, I'd like to ask if there is something like getGameBadgeLevel, but for another user.
  18. 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"); } });}
  19. how can i send a message to group using gid or url?
  20. 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.
  21. Hello! Added possibility send custom headers for any request in the library. https://github.com/DoctorMcKay/node-steam-user/pull/194 - Please merge it.
  22. 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
  23. 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.
×
×
  • Create New...