Jump to content
McKay Development

AshIgorash

Member
  • Posts

    14
  • Joined

  • Last visited

Posts posted by AshIgorash

  1. I am developing a backend for my own small project. I am facing a problem, when choosing a bot for making a trade I need to return one with less than 30 active trades total and less than 5 active trades with a specific user. Its ok that for each trade to ask info from steam about current trades of bot or should I keep this data stored in memory? . Its also an option to look in db but I think it will overload it. 

  2. How do I get time when items from my inventory will be tradable?
    If I am fetching this link: "https://steamcommunity.com/inventory/id64/2?l=english&count=75", if this is my inventory I can see this field 
    "owner_descriptions":[{"type":"html","value":" "},{"type":"html","value":"Tradable After Oct 19, 2023 (7:00:00) GMT","color":"ff4040"}] with 'tradable after' value but getInventoryContents() method from node-steam-tradeoffer-manager does not return this property. Is there a way to get the time?

  3. I know that is my question isn't about this this forum but maybe I can get some help, so, today I was scammed. Someome joined my account and sold a lot of items for 1€ and after that bought a 0.03 € item for 100€. I have steam guard installed only on my phone, but I have an api key that I used on many sites. I have installed in my browser extensions like market.csgo p2p, csgo trader and sih. Mb my password was leaked because it was not strong enaugh and I used it in many sites but how did someone loggin in my account without steam guard. At time my money was stolen my computer was turned off. I have no idea how this is possible. I have to mention that he extracted some items from my storage containers and sold it.

  4. Yes, I launch it, parameters are valid, also I tried to put whole insept link at owner but I dont get anything.
     

    const SteamUser = require('steam-user');
    const GlobalOffensive = require('globaloffensive');
    const SteamTotp = require('steam-totp');

     

    const userMarar = require('./config.json');
    const { time } = require('console');

     

    let user = new SteamUser();
    let csgo = new GlobalOffensive(user);

     

    let logOnOptions = {
        "accountName": "name",
        "password": "pass",
        "twoFactorCode": SteamTotp.generateAuthCode(userMarar["shared_secret"])
    };
    user.logOn(logOnOptions);

     

    user.on('loggedOn', function() {
        console.log("Logged into Steam");
        user.setPersona(SteamUser.EPersonaState.Online);

     

        user.gamesPlayed([730]);
       
            });
       

     

    csgo.on('connectedToGC', () => {
        console.log('Connected to CS:GO Game Coordinator');
        csgo.inspectItem("76561202255233023","30999439917","2612242276566628011",function(item) {
            if (err) {
                console.log(err);
                return;
            }
        console.log(item)
       
       
       
       
        });
    });
  5. Is there any method by which I can find the paint_wear of all the items in someone's inventory. I tried this code using globaloffensive but it doesn't print anything: 

    csgo.on('connectedToGC', () => {
        console.log('Connected to CS:GO Game Coordinator');
       
        csgo.inspectItem("76561202255233023","30848107082","12134527536543334116",function(item) {
            if (err) {
                console.log(err);
                return;
            }
        console.log(item)
×
×
  • Create New...