
16austin16
Member-
Posts
20 -
Joined
-
Last visited
Everything posted by 16austin16
-
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
-
Ok i got it working i just reinstalled the server and ran that command and now its working. Thanks
-
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.
-
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
-
Question Two steam account on one bot.
16austin16 replied to jensej's topic in node-steam-tradeoffer-manager
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 -
Ive looked into the code and its from mobile confirmations but i fixed it by making my code ignore the error
-
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
-
Question Communicating with site, withdraw/deposit system...
16austin16 replied to hb1337's topic in node-steam-tradeoffer-manager
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 -
Question Get New Cookies After They Expire?
16austin16 replied to 16austin16's topic in node-steam-user
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)); } -
Question Get New Cookies After They Expire?
16austin16 replied to 16austin16's topic in node-steam-user
Ive been running it for a while and now im getting ReferenceError: webLogOn is not defined -
Question Get New Cookies After They Expire?
16austin16 replied to 16austin16's topic in node-steam-user
OK thanks -
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.
-
Thanks
-
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!
-
Error 26 means the item does not exist in that inventory. So you are probably using the wrong asset id
-
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)
-
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?