@Dr. McKay I seem to have the same problem. I tried opening new ticket, and it didn't open so im posting it here:
module.exports = function(accountDetails, accountSettings, nickname, accountID, games){
this.client = new SteamUser();
this.community = new SteamCommunity();
let csgo = new GlobalOffensive(this.client);
this.logOnOptions = {
accountName: accountDetails.login,
password: accountDetails.password,
rememberPassword: true,
machineName: machineName,
clientOS: 16,
dontRememberMachine: false,
rememberPassword: true
}
if(accountDetails.sharedSecret) this.logOnOptions.twoFactorCode = SteamTotp.generateAuthCode(accountDetails.sharedSecret);
this.client.setOption("promptSteamGuardCode", false);
this.client.setOption("autoRelogin", true);
this.client.logOn(this.logOnOptions);
this.client.on('loggedOn', () => { ... });
this.client.on('webSession', (sessionId, cookies) => {
log(`webSession found.`, this.login);
this.community.setCookies(cookies);
log(`Cookies set.`, this.login);
if(identitySecret){
this.community.startConfirmationChecker(10000, accountDetails.identitySecret);
log(`Confirmation checker started.`, this.login);
}
});
}
And all I get is: