Jump to content
McKay Development

Search the Community

Showing results for tags 'Question'.

  • 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 would I go with registering a free to play game into the account because it will not play anything not in the account.
  2. every any transactions, send/receive trade. why i always get like this:
  3. Hi, need help about item name. How can I show the item name for item that I take from the bot? Currently it only shows the name of item that bot received.
  4. Hello, I have a problem with my code when I am trying to login() and editProfile() more than one account at once. My script: var community = new SteamCommunity(); var activationProcess = setInterval(prepareActivation, 20000); function prepareActivation() { doLogin(usernames[n], passwords[n]); n++; } function doLogin(accountName, password, authCode, twoFactorCode, captcha) { community.login({ // Some data }, function(err, sessionID, cookies, steamguard) { console.log(community.steamID.getSteamID64()); editProfile(username); }); } function setupProfile(username) { community.editProfile({ 'name' : username, }, function(err) { if (err) { console.log('Failed to Edit Profile'); console.log(err); } }); }As you can see from code I am trying to change SteamCommunity name. I do it through interval because I have 5 accounts. I do not understand why, but I am able to edit profile only for the first account. After that I get this error: Failed to Edit Profile Error: HTTP error 302 at SteamCommunity.<anonymous> (/Users/newbie/Work/Tools/node-steam-community/node_modules/steamcommunity/components/profile.js:123:22) at Request._callback (/Users/newbie/Work/Tools/node-steam-community/node_modules/steamcommunity/components/http.js:67:15) at Request.self.callback (/Users/newbie/Work/Tools/node-steam-community/node_modules/request/request.js:187:22) at emitTwo (events.js:106:13) at Request.emit (events.js:191:7) at Request.<anonymous> (/Users/newbie/Work/Tools/node-steam-community/node_modules/request/request.js:1044:10) at emitOne (events.js:96:13) at Request.emit (events.js:188:7) at Gunzip.<anonymous> (/Users/newbie/Work/Tools/node-steam-community/node_modules/request/request.js:965:12) at emitNone (events.js:91:20) I have no idea why It happens, because when I am trying other methods like joinGroup(), everything works fine. It will be great if someone could tell me the reason. Thank you very much.
  5. Hello! I have a question a bout generating a Totp authorization code. Does this works also for login htought Steam Client? It's just a question for use it instead of SteamApp. Thanks for reading me and have a nice gaming!
  6. How do you receive market_hash_name when trade offer has been sent to you, and can you get information if the item is craftable?
  7. Is there any ways to get two factor code by typing in command and how to set up stock command in steam chat?
  8. Firstly, thanks for the great work on steam-user. It's great. I'm having some issues with getting my friends list, having read the docs I understand it can be accessed via myFriends. I've tried the following but it keeps returning undefined. function getMyFriends(callback) { if(err) return callback(err); if(!user.myFriends) callback(null,user.myFriends) } What event do I need to wait for to ensure it holds something?
  9. If i don't add the callback handler i got the result = 6 (LoggedInElsewhere) , but if i add the callback handler it goes to the first result: (console.error("Error: Logon failed, Invalid Password or playing in the account." ) . Any tips?
  10. I need to make sure the recipient is online before I message him. I have loooked for this and this is what I found: client.getPersonas([SteamID], function (persona) { PersonaState = persona[SteamID].persona_state; console.log(PersonaState); This returns null no matter what state I set for myself. I am very new to node. Not sure where to look, there are no errors in the code. I am friends with the bot and he is able to message me and recieve my messages. It works but I dont want him sending me message when my account is offline which it currently does.
  11. Hi, I used this library with pretty much the default code in storehouse-steam.js like 8 months ago. Now if I try to use the library, I keep getting IP blocked by Steam. If I update all the dependencies, it still happens. Node is not my preferred language, and I am not a total idiot, but I am not sure how to resolve this in a simple and efficient matter. It only happens when I have a lot of pending orders to accept. Might just be an issue of "steam sucks", with the library is requesting too many offers at once, but I am not sure the best way to handle this. Just makes me frustrated with Steam that everything worked perfectly, and now I have spent tons of time trying to work out a proper way for this.. I just want to accept a lot of tradeoffers automatically :/
  12. i have script tradeoffer with node js. i want this script run in my website using php. how to call this script on php
  13. Good afternoon. A question, is it possible to implement the purchase of a single item in the Steam store?
  14. Hello! I'm trying to send offers. I can create them and I works fine But, when I try to send the confirmation, 80~90% of the times I get this error: "[Error: Could not find confirmation for object XXXXXXXXXX]" The offer is sent, but then I need to confirm it on my mobile device. What can I do to send the confirmation correctly? This is the code I'm using for send it var text_to_send = "Thanks for playing. Here is you reward :D"; var offer = manager.createOffer(trade_url); offer.addMyItems(items_to_send); offer.setMessage(text_to_send); offer.send(function(err, status) { if (err) { console.log(err); return; } if (status == 'pending') { console.log(`Offer #${offer.id} sent, but requires confirmation`); community.acceptConfirmationForObject(confirmation_key, offer.id, function(err) { if (err) { console.log(err); } else { console.log("Offer confirmed"); bbdd.save();//save to the ddbb } }); } else { console.log(`Offer #${offer.id} sent successfully`); bbdd.save();//save to the ddbb } What I'm doing wrong? Is there other way to confirm my offers sent? Thanks for reading this post and have a nice gaming!
  15. Hey Boys and Girls, My bot often get the error 28 because steam goes slow. How should I manage it, that the bot try to accept so long as he accepted it? Thanks for all, who gonna help me!
  16. Hello, I have some questions about node steamcommunity. Is there a way i can get the last added gift or item that was added to my inventory. and then get the item / gift id that i can accept / activate or send it to someone or so ? Or how can i get my custom URL or profile name for custom url with node steamcommunity ? because my accounts have customURL and not want save them all and check what is for what account . thats why ask can get it with steamcommunity with a parameter ? #https://steamcommunity.com/id/profilenameinURL/inventory/# I try to autoactivate or send to on my other account when someone gift or trade me something. And can i accept and unnpack gift on my account ? And i coded that it work with steamguard but for that i deactivated my mobileauth. can i code it that it save my mobile auth like it saves steamguard that i not always need enter it when login at same machine ? I have forgotten: when i try community.httpRequestGet('https://steamcommunity.com/id/profile/inventory/ or any other link i get error 302 . can the node steamcommunity note follow / follow redirect the url ? Its a bit hard to get through the whole node steamcommunity functions etc not so easy atm for me. Thanks hope someone here can help , and answer my questions.
  17. hey i searching a way /method to accept and activate gifts i hope theres a better way as to use cookies and do requests -.-
  18. Hi! How to i can get assetid items after accept offer offer.accept(function (err,result) retult return accept or pengind i need get new assetid on my inventory Thank you!
  19. How to create multi-bot on the same ip address? When you run two accounts I get the error: "Can't check confirmations: HTTP error 429"How to fix it?
  20. Hello I created script for creating steam accounts from csv file. Always script creating 2 account and next throw Error code: 84. I have inteval 1 minute every each loop. Its time limit and I need to extend this or other limit?
  21. I can't figure out why client.on('webSession', function(sessionID, newCookie){}); will not fire at all on my server client.on('loggedOn', function(details){}); works fine?
  22. Hello, I started to receive this error today when I try to start my bot. I've tried to google this but I haven't found any usefull informations on what's exactly wrong. First I've tried to wait 10 minutes and start the bot again, same problem, then I tried to wait 20 minutes and start, then I tried to wait 1 hour and start the bot, it didn't help. How much more should I wait or how should I avoid getting this error? If you need any more informations from me, I'm provide anything, I'm just not sure what would be helpful
  23. Hey, I started using Node.js and javascript a short time ago. I was trying to display my own username in console after logon. And if that worked, I'd try for others. I was hoping if you could help me. This is my code: client.on('loggedOn', function() { console.log("[Steam-BOT] Logged in as " + client.steamID); var botSteamID = [client.steamID]; var clientName = client.getPersonas(botSteamID); }); So I thought this was the way to go but, clientName stays unidentified. I do not know what I am doing wrong Thanks in advance!
  24. I know this endpoint with the format http://steamcommunity.com/profiles/<PROFILEID>/inventory/json/753/1 However this endpoint, as many of you know, has very strict limits (3 / min without login, 15/min with login, these values vary a little I think). I also found this endpoint: http://steamcommunity.com/inventory/<PROFILEID>/440/2?l=english&count=5000 It replies with a much smaller json, and was hoping that it has less strict restrictions. Does anyone have experiences with it, and does anyone know how to modify the link to make it access the csgo-inventory? cheers :> Edit: It looks like that the 440 must be replaced with 730, then it works. As for the actual limits, I didn't try it yet. Will update this again as soon as I know it. It seems that it works much better tho!
  25. how to get webCookies and sessionId from steam using PHP?
×
×
  • Create New...