Search the Community
Showing results for tags 'node-steam-user'.
-
We can send a random number using /random client.chatMessage(SID, "/random 100"); But is there a way to find out the result?
-
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); } } ); });
-
Question Like a artwork with the node-steam-user module?
loleks420 posted a topic in node-steam-user
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 -
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.
-
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?
-
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?
-
Hello, Is it possible to know if a game has trading cards from its appid? thanks
-
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"
-
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?
-
Hi, when do you planning release node-steam-user v 4 ?
-
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 ?
-
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:
-
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?
-
Error: Already logged on, cannot log on again Why crashing script? :// after hours
-
Hello, can I somehow interact when one of my friends gets online? best regards Kingnemehl
-
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.
-
I want handle 'FriendMessagesClient.NotifyAckMessageEcho#1' message, it's possible?
-
Hello, I'd like to ask if there is something like getGameBadgeLevel, but for another user.
-
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"); } });}
-
how can i send a message to group using gid or url?
-
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.
-
Hello! Added possibility send custom headers for any request in the library. https://github.com/DoctorMcKay/node-steam-user/pull/194 - Please merge it.
-
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
-
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.
-
changeEmail deprecated?