Jump to content
McKay Development

shustrik35

Member
  • Posts

    8
  • Joined

  • Last visited

Posts posted by shustrik35

  1. Hey! 

     

    Checked an `accountInfo.flags` after login using `node-steam-user` and found that flag `HWIDSet` is set. Is that flag just about Machineid.bin file or maybe something else? 

  2. Hey.

     

    I found a method to get steamApps of account. Would be great to see that in CSteamUser methods  :). Cookies must be provided.


    const xml = await new Promise((resolve_, reject_) => {
      this._community.httpRequestGet(
        `https://steamcommunity.com/profiles/[U:1:69762859]/games?xml=1`,
        (err: Error, result: any) => {
          if(err) reject_(err);
          resolve_(result.body);
        }
      );
    });
    
    //Sometimes iam getting ":0:" id part by SteamID.getSteam3RenderedID() and this method isn't work. 
    //So i just replaced it with ":1:" and it works well at least on my tests.   
    
  3. Hi,

     

    I have a few questions:

     

    1. How can i get RegionID of my account (that using in Steam Store). Reffering to this https://i.gyazo.com/93754ec9ef0032dbe38ce466b6d86974.png (is it right place?), my code is '62' but i want a country string like 'RU' or 'US'? Couldn't find any info in enums for that. 

     

    2. Is it possible to buy/buyAsGift games in Steam Store on US account from different GeoIP? Which pool of regions would be supported for gifting (GeoIP regions or account regions)?

     

    3. And maybe somewhere exists a method to get that pool of supported regions for certain account (for buying games as gifts)? 

     

    4. Can i somehow catch an event when a recipient accept/decline a gift (from Steam Store, not from inventory)?

×
×
  • Create New...