Jump to content
McKay Development

Recommended Posts

Posted

So I am using steam-user to get a list of gameservers. My code worked for a while but when I tried to do it again on another script it just returns "null". I have tried everything I can think of and I am out of ideas. Anything to point me in the right direction would be greatly appreciated.

const SteamUser = require('steam-user');
const client = new SteamUser();


client.logOn();

client.on('loggedOn', () => {
  console.log('Logged into Steam');
  client.getServerList(null, 100, (servers) => {
    console.log(servers);
  })
});

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...