Jump to content
McKay Development

laroz

Member
  • Posts

    12
  • Joined

  • Last visited

Posts posted by laroz

  1. Hi,

     

    after a time, i get Errors like the Bot is not logged in.

    data:    bot.js:10784 - Error: Not Logged In
    

    from offer.getUserDetails

     

    or that

    data:    bot.js:10784 - Unable to accept offer: Malformed JSON response
    data:    bot.js:10784 - Unable to accept offer in retry: Malformed JSON response
    

    when he will accept the offer...

     

    What can i do there? i tried to make this again, but dont work

    client.on('webSession', function(sessionID, cookies) {
    		manager.setCookies(cookies, function(err) {
    			if (err) {
    				console.log(err);
    				process.exit(1);
    				return;
    			}
    			console.log("Got API key: " + manager.apiKey);
    		});
    		community.setCookies(cookies);
    		community.startConfirmationChecker(30000, "SECRET");
    	});
    
  2. Thank you guys!

    That is working

    client.on("steamGuard", function(domain, callback, lastCodeWrong) {
    	if(lastCodeWrong) {
    		console.log("Last code wrong, try again!");
    		setTimeout(function() {
    		    callback(SteamTotp.getAuthCode("YOURCODE"));
    		}, 30000);
    	}	
    });
    

    I mean this 30 seconds is for Steam Codes, cause this time needs to wait for the new code right?

     

    Than close it :) Working! :)

  3. You can only use a code once. Subsequent uses will be rejected. Codes change every 30 seconds.

     

    In practice, this means that a second login within a 30-second interval will be rejected and ask for a new code.

    But what can i do, if the bot ask for Steam Guard Code:? 

    The Bot dont try again for his own... i must turn off and start again to fix it... 

  4. When that happens, some server is probably down or being unstable. If you wait, things will fix themselves.

    I had another post, but this was deleted. So here.

     

    The Bot accept the Trade. receivedOfferChanged tracked it, and when he makes 

    offer.getReceivedItems(function(err, items) {
    

    than items is empty...

     

    so he dont find the "items" from the receive... that is the problem, why he accept items but cant put in my database

     

    Can you say me, what i can do?

    I see much other sites yesterday (csgofast) and they was active when the steam server has problems...

    My Bot dont find items in getreceiveditems

×
×
  • Create New...