Jump to content
McKay Development

ThePlata

Member
  • Posts

    8
  • Joined

  • Last visited

Posts posted by ThePlata

  1. How do I get the names of all available games on steam displaying on the website? Here's my code. It just displays a blank page for like 5 seconds and displays an "Already logged on, cannot log on again" error. How do I properly display it?

    client.on("appOwnershipCached", () => {
        let gameArr = client.getOwnedApps();
    
        client.getProductInfo(
          gameArr,
          [],
          (err, apps, packages, unknownApps, unknownPackages) => {
            for (var appid in apps) {
              res.send(apps[appid].appinfo.common.name);
            }
          }
        );
      });
    
×
×
  • Create New...