Jump to content
McKay Development

aeonix

Recommended Posts

Hello, for some reason I can't login on any Steam accounts.


Node.js version: 12.4.0 / 8.16.0
node-steam-user version: 4.12.2


Debug log (first part, then it repeat immediately inf. amount of times):
 

Connecting to TCP CM: 155.133.230.34:27019
TCP connection established
Handled message: ChannelEncryptRequest
Channel encrypt request: protocol 1, universe 1, nonce 2c1378e10fb52fd105a21685874390d8, 0 remaining bytes
Sending message: ChannelEncryptResponse
Handled message: ChannelEncryptResult
Sending message: ClientLogon
Handled message: ClientLogOnResponse
Log on response: TryAnotherCM

Code:
 

console.log('> Loading, please wait.')

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

const logOnOptions = {
  accountName: '***',
  password: '***',
}

console.log('> Loaded, logging in.')

client.logOn(logOnOptions)

client.on('loggedOn', () => {
  console.log('> Logged into Steam.')
  client.setPersona(SteamUser.Steam.EPersonaState.Online, 'aeonix.space')
  client.gamesPlayed('Idling', 730)
})

client.on('debug', console.log)

Link to comment
Share on other sites

TryAnotherCM means the server you connected to isn't accepting connections at this time. Seems like Steam was just down when you tried to log on. Can you try again now?

Still can't, I tried with another developer's Steam module - everything worked, but this module keeps erroring TryAnotherCM.

Link to comment
Share on other sites

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...