Jump to content
McKay Development

16austin16

Member
  • Posts

    20
  • Joined

  • Last visited

Everything posted by 16austin16

  1. I noticed trades wherent being canceled after the time i set and so i was looking in to it and found this post so i looked and my account isnt limited also saw that there is a event for debug and i put that in my code and its saying Can't auto-cancel offer #5224793978: HTTP error 404 Thinking that this might be a steam api change so i thought i would post here to let you know Also on the most recent version before you ask EDIT: Found out that the folder the file was in was on 2.10.4
  2. Ok i got it working i just reinstalled the server and ran that command and now its working. Thanks
  3. The thing is this is a separate server to run bots on and on my server that my site is on i got node installed but i did apt-get install node and when i type node it does nothing.
  4. When i try to npm install steam-user i get: root@bot1:~# npm install steam-usernpm ERR! 404 Not Foundnpm ERR! 404npm ERR! 404 'doctormckay/steam-crypto' is not in the npm registry.npm ERR! 404 You should bug the author to publish itnpm ERR! 404 It was specified as a dependency of 'steam-user'npm ERR! 404npm ERR! 404 Note that you can also install from anpm ERR! 404 tarball, folder, or http url, or git url. npm ERR! System Linux 2.6.32-042stab120.6npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" "steam-user"npm ERR! cwd /rootnpm ERR! node -v v0.10.29npm ERR! npm -v 1.4.21npm ERR! code E404npm ERR!npm ERR! Additional logging details can be found in:npm ERR! /root/npm-debug.lognpm ERR! not ok code 0
  5. I run 4 bots on 1 data base and one thing to pay attention to is make sure you define what bot is doing what task through like a table or they will all do it
  6. Ive looked into the code and its from mobile confirmations but i fixed it by making my code ignore the error
  7. I have 4 bots running with the trade offer pollInterval running at 2 seconds and im getting this error on all my bots after running them for like 2 min and i dont know what other loops im running that will do this besides a couple loops running in my db and the trade offer is the only one i can think of and ive tried rasing the loop to 5 sec and still didn't work
  8. If you add me on steam http://steamcommunity.com/id/16austin16 i can help. I have a site called http://skntrading.com and http://csgoskinz.rip
  9. function checkConfirmations(steamcommunityMobileConfirmations){ steamcommunityMobileConfirmations.FetchConfirmations((function (err, confirmations) { if (err) { console.log(err); clearInterval(depowith); //To Stop These Loops clearInterval(checkconf); //Restarts Loop In webLogOn Event webLogOn(); return; } if(confirmations.length != 0) { console.log('steamcommunityMobileConfirmations.FetchConfirmations received ' + confirmations.length + ' confirmations'); } if ( ! confirmations.length) { return; } steamcommunityMobileConfirmations.AcceptConfirmation(confirmations[0], (function (err, result) { if (err) { console.log(err); return; } console.log('steamcommunityMobileConfirmations.AcceptConfirmation result: ' + result); }).bind(this)); }).bind(this)); }
  10. Ive been running it for a while and now im getting ReferenceError: webLogOn is not defined
  11. How can i get the new websession cookies after they expire? e.x. so i can confirm trades. The only way i know it to basically restart the bot daliy.
  12. How can i make a trade cancel because i was looking at the offer.expires and idk how to set it just for 5 minutes to expire. Please help. Thanks!
  13. Error 26 means the item does not exist in that inventory. So you are probably using the wrong asset id
  14. So im using offer.loadPartnetInventoy and im getting this error /root/node_modules/steam-tradeoffer-manager/node_modules/steamcommunity/components/users.js:292 callback(null, inventory, currency); ^ TypeError: callback is not a function at SteamCommunity.<anonymous> (/root/node_modules/steam-tradeoffer-manager/node_modules/steamcommunity/components/users.js:292:5) at Request._callback (/root/node_modules/steam-tradeoffer-manager/node_modules/steamcommunity/components/http.js:62:14) at Request.self.callback (/root/node_modules/request/request.js:198:22) at emitTwo (events.js:100:13) at Request.emit (events.js:185:7) at Request.<anonymous> (/root/node_modules/request/request.js:1035:10) at emitOne (events.js:95:20) at Request.emit (events.js:182:7) at IncomingMessage.<anonymous> (/root/node_modules/request/request.js:962:12) at emitNone (events.js:85:20)
  15. Nodejs confuses me so i dont really know how to use that method. Do you think you can just reply a quick example?
  16. I am really bad at coding in nodejs because to me its confusing because i know to many languages but do you think i can get an example to work off of for checking this?
  17. So im trying to make a withdraw system on my site and i found out assetids change after the trade. So how can i get the new one to store in a database?
×
×
  • Create New...