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
2051214
2051214
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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