Steam tradeoffer manager events not firing
up vote
0
down vote
favorite
I'm trying to setup a trade bot with steam trade offer manager node module.
this is my code:
const SteamUser = require('steam-user');
const TradeOfferManager = require('steam-tradeoffer-manager');
const SteamTotp = require('steam-totp')
const fs = require('fs');
const bot = new SteamUser();
const manager = new TradeOfferManager(
steam: bot,
language: 'en',
);
if (fs.existsSync('polldata.json'))
manager.pollData =
JSON.parse(fs.readFileSync('polldata.json').toString('utf8'));
bot.logOn(
accountName: 'username',
password: 'password',
twoFactorCode:
SteamTotp.generateAuthCode('secret key')
);
bot.on('webSession', (sessionid, cookies) =>
manager.setCookies(cookies);
sendRandomItem();
);
manager.on('pollData', function(pollData)
fs.writeFileSync('polldata.json', JSON.stringify(pollData));
);
function sendRandomItem()
console.log('Sending the offer')
const partner ='https://steamcommunity.com/tradeoffer/new/partner=92022019&token=PKIsI3np';
const offer = manager.createOffer(partner);
offer.addTheirItem(
assetid: "14927752826",
appid: 730,
contextid: 2
);
offer.send((err, status) =>
if (err)
console.log(err);
else
console.log(`Sent offer. Status: $status.`);
);
;
trade request sent but when i accept or decline the offer sentOfferChanged
doesn't fire up.
also i tried the debug
event no luck there too.
the only event that is firing is pollData
.
node.js steam steambot
add a comment |
up vote
0
down vote
favorite
I'm trying to setup a trade bot with steam trade offer manager node module.
this is my code:
const SteamUser = require('steam-user');
const TradeOfferManager = require('steam-tradeoffer-manager');
const SteamTotp = require('steam-totp')
const fs = require('fs');
const bot = new SteamUser();
const manager = new TradeOfferManager(
steam: bot,
language: 'en',
);
if (fs.existsSync('polldata.json'))
manager.pollData =
JSON.parse(fs.readFileSync('polldata.json').toString('utf8'));
bot.logOn(
accountName: 'username',
password: 'password',
twoFactorCode:
SteamTotp.generateAuthCode('secret key')
);
bot.on('webSession', (sessionid, cookies) =>
manager.setCookies(cookies);
sendRandomItem();
);
manager.on('pollData', function(pollData)
fs.writeFileSync('polldata.json', JSON.stringify(pollData));
);
function sendRandomItem()
console.log('Sending the offer')
const partner ='https://steamcommunity.com/tradeoffer/new/partner=92022019&token=PKIsI3np';
const offer = manager.createOffer(partner);
offer.addTheirItem(
assetid: "14927752826",
appid: 730,
contextid: 2
);
offer.send((err, status) =>
if (err)
console.log(err);
else
console.log(`Sent offer. Status: $status.`);
);
;
trade request sent but when i accept or decline the offer sentOfferChanged
doesn't fire up.
also i tried the debug
event no luck there too.
the only event that is firing is pollData
.
node.js steam steambot
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to setup a trade bot with steam trade offer manager node module.
this is my code:
const SteamUser = require('steam-user');
const TradeOfferManager = require('steam-tradeoffer-manager');
const SteamTotp = require('steam-totp')
const fs = require('fs');
const bot = new SteamUser();
const manager = new TradeOfferManager(
steam: bot,
language: 'en',
);
if (fs.existsSync('polldata.json'))
manager.pollData =
JSON.parse(fs.readFileSync('polldata.json').toString('utf8'));
bot.logOn(
accountName: 'username',
password: 'password',
twoFactorCode:
SteamTotp.generateAuthCode('secret key')
);
bot.on('webSession', (sessionid, cookies) =>
manager.setCookies(cookies);
sendRandomItem();
);
manager.on('pollData', function(pollData)
fs.writeFileSync('polldata.json', JSON.stringify(pollData));
);
function sendRandomItem()
console.log('Sending the offer')
const partner ='https://steamcommunity.com/tradeoffer/new/partner=92022019&token=PKIsI3np';
const offer = manager.createOffer(partner);
offer.addTheirItem(
assetid: "14927752826",
appid: 730,
contextid: 2
);
offer.send((err, status) =>
if (err)
console.log(err);
else
console.log(`Sent offer. Status: $status.`);
);
;
trade request sent but when i accept or decline the offer sentOfferChanged
doesn't fire up.
also i tried the debug
event no luck there too.
the only event that is firing is pollData
.
node.js steam steambot
I'm trying to setup a trade bot with steam trade offer manager node module.
this is my code:
const SteamUser = require('steam-user');
const TradeOfferManager = require('steam-tradeoffer-manager');
const SteamTotp = require('steam-totp')
const fs = require('fs');
const bot = new SteamUser();
const manager = new TradeOfferManager(
steam: bot,
language: 'en',
);
if (fs.existsSync('polldata.json'))
manager.pollData =
JSON.parse(fs.readFileSync('polldata.json').toString('utf8'));
bot.logOn(
accountName: 'username',
password: 'password',
twoFactorCode:
SteamTotp.generateAuthCode('secret key')
);
bot.on('webSession', (sessionid, cookies) =>
manager.setCookies(cookies);
sendRandomItem();
);
manager.on('pollData', function(pollData)
fs.writeFileSync('polldata.json', JSON.stringify(pollData));
);
function sendRandomItem()
console.log('Sending the offer')
const partner ='https://steamcommunity.com/tradeoffer/new/partner=92022019&token=PKIsI3np';
const offer = manager.createOffer(partner);
offer.addTheirItem(
assetid: "14927752826",
appid: 730,
contextid: 2
);
offer.send((err, status) =>
if (err)
console.log(err);
else
console.log(`Sent offer. Status: $status.`);
);
;
trade request sent but when i accept or decline the offer sentOfferChanged
doesn't fire up.
also i tried the debug
event no luck there too.
the only event that is firing is pollData
.
node.js steam steambot
node.js steam steambot
asked Nov 9 at 19:01
Majid Sajadi
1951114
1951114
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53231829%2fsteam-tradeoffer-manager-events-not-firing%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown