Jump to content
McKay Development

16austin16

Member
  • Posts

    20
  • Joined

  • Last visited

Posts 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

    image.png.55c17e0f5baadf1a230b5165457ba75a.png

     

    EDIT: Found out that the folder the file was in was on 2.10.4 :P

  2. All of your everything is super outdated. Update. Specifically to node.js 4.0.0 or newer, and as new of npm as you can get.

     

    You can install the latest stable 64-bit version for Linux using:

    wget -qO- https://www.doctormckay.com/installnode.sh | /bin/bash
    

    Make sure you execute that somewhere writable as root as it needs to download a file to disk.

     

     

    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.

    5606627afc85d4bd1141025bf2d80065.png

  3. When i try to npm install steam-user i get:

    root@bot1:~# npm install steam-user
    npm ERR! 404 Not Found
    npm ERR! 404
    npm ERR! 404 'doctormckay/steam-crypto' is not in the npm registry.
    npm ERR! 404 You should bug the author to publish it
    npm ERR! 404 It was specified as a dependency of 'steam-user'
    npm ERR! 404
    npm ERR! 404 Note that you can also install from a
    npm ERR! 404 tarball, folder, or http url, or git url.
     
    npm ERR! System Linux 2.6.32-042stab120.6
    npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" "steam-user"
    npm ERR! cwd /root
    npm ERR! node -v v0.10.29
    npm ERR! npm -v 1.4.21
    npm ERR! code E404
    npm ERR!
    npm ERR! Additional logging details can be found in:
    npm ERR!     /root/npm-debug.log
    npm ERR! not ok code 0
  4. 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

  5. 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));

    }

  6. 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)
×
×
  • Create New...