Closed bikashbaruah19 closed 6 years ago
Also your question is not related to this project.
@bikashbaruah19 Is this issue still active? As @scholtzm mentioned this seems to be not related. So is there a reason to not close this issue?
i tried a lot but no one helped me so i stopped it now. you can close to topic
whenever i try to start my bot with node.js i get these following errors. also i've listed my bot script at last. earlier i everything was fine when i was using Debian 7, now i've newly moved to google cloud platform and Linux 14, im kinda newbie. plz be little more specific.
/node_modules/steamcommunity/node_modules/request/node_modules/hawk/node_modules/boom/lib/index.js:5 const Hoek = require('hoek'); ^^^^^ SyntaxError: Use of const in strict mode. at exports.runInThisContext (vm.js:73:16) at Module._compile (module.js:443:25) at Object.Module._extensions..js (module.js:478:10) at Module.load (module.js:355:32) at Function.Module._load (module.js:310:12) at Module.require (module.js:365:17) at require (module.js:384:17) at Object. (/home/Bot/node_modules/steamcommunity/node_modules/request/node_modules/hawk/lib/index.js:5:33)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
after upgrading node to v8 i get this error
Bot/node_modules/log4js/lib/configuration.js:44 throw new Error( ^
Error: Problem with log4js configuration: ({ appenders: [ { type: 'console' }, { type: 'file', filename: 'logs/bot_undefined.log' } ] }) - must have a property "appenders" of type object. at tests.forEach (/home/Bot/node_modules/log4js/lib/configuration.js:44:15) at Array.forEach ()
at Configuration.throwExceptionIf (/home/Bot/node_modules/log4js/lib/configuration.js:42:11)
at new Configuration (/home/Bot/node_modules/log4js/lib/configuration.js:205:10)
at Object.configure (/home/Bot/node_modules/log4js/lib/log4js.js:201:12)
at Object. (/home/Bot/bot.js:18:8)
at Module._compile (module.js:624:30)
at Object.Module._extensions..js (module.js:635:10)
at Module.load (module.js:545:32)
at tryModuleLoad (module.js:508:12)
after doing little changes, i get this now.
/home/Bot$ node bot.js /home/Bot/bot.js:23 categories: { ^^^^^^^^^^
SyntaxError: Unexpected identifier at createScript (vm.js:80:10) at Object.runInThisContext (vm.js:139:10) at Module._compile (module.js:588:28) at Object.Module._extensions..js (module.js:635:10) at Module.load (module.js:545:32) at tryModuleLoad (module.js:508:12) at Function.Module._load (module.js:500:3) at Function.Module.runMain (module.js:665:10) at startup (bootstrap_node.js:187:16) at bootstrap_node.js:607:3
And here is my bot script
var SteamCommunity = require('steamcommunity'); var SteamTotp = require('steam-totp'); var mysql = require('mysql'); var log4js = require('log4js'); var SteamTradeOffers = require('steam-tradeoffers'); var async = require('async');
var pool = mysql.createPool({ connectionLimit : 10, database: 'csgo', host: 'localhost', user: 'root', password: 'Tome' });
var community = new SteamCommunity(); var offers = new SteamTradeOffers(); log4js.configure({ appenders: [ { type: 'console' }, { type: 'file', filename: 'logs/bot_'+process.argv[2]+'.log' } ] }); var logger = log4js.getLogger();
var express = require('express'); var app = express();
app.get('/sendTrade/', function (req, res) { var assetids = req.query['assetids']; assetids = assetids.split(','); var partner = req.query['partner']; var token = req.query['token']; var checksum = req.query['checksum']; var steamid = req.query['steamid']; var senditems = [];
} });
app.get('/sendTradeMe/', function (req, res) { var names = req.query['names']; names = names.split(','); var partner = req.query['partner']; var token = req.query['token']; var checksum = req.query['checksum']; if ((token == undefined) || (token == '')) { logger.error('Error sending trade'); res.json({ success: false, error: "Missing Trade token." }); } else { offers.loadMyInventory({ appId: 730, contextId: 2 }, function (err, items) { if (err) { logger.error('Error sending trade'); logger.debug(err); res.json({ success: false, error: err.toString() }); } else { var senditems = []; for (var i = 0; i < names.length; i++) { for (var a = 0; a < items.length; a++) { if ((names[i] == items[a].market_hash_name) && (!items[a].ss)) { senditems.push({ appid: 730, contextid: 2, assetid: items[a].id }); if (senditems.length == names.length - 1) break; items[a].ss = 1; continue; } if (senditems.length == names.length - 1) break; } }
} });
app.get('/sendTradeMe/', function (req, res) { var names = req.query['names']; names = names.split(','); var partner = req.query['partner']; var token = req.query['token']; var checksum = req.query['checksum']; offers.loadMyInventory({ appId: 730, contextId: 2 }, function(err, items) { if(err) { logger.error('Error sending trade'); logger.debug(err); res.json({ success: false, error: err.toString() });
} else { var senditems = []; for(var i = 0; i < names.length; i++) { for(var a = 0; a < items.length; a++) { if((names[i] == items[a].market_hash_name) && (!items[a].ss)) { senditems.push({ appid: 730, contextid: 2, assetid: items[a].id }); if(senditems.length == names.length-1) break; items[a].ss = 1; continue; } if(senditems.length == names.length-1) break; } }; var code = makecode(); console.log(partner, token, checksum, names, senditems); offers.makeOffer({ partnerAccountId: partner, accessToken: token, itemsFromThem: [], itemsFromMe: senditems, message: 'Code: '+code }, function(err, r) { if(err) { logger.error('Error sending trade'); logger.debug(err); res.json({ success: false, error: err.toString() }); } else { res.json({ success: true, code: code, amount: -checksum, tid: r.tradeofferid, state: 2 }); } }); } }); });
app.get('/checkTrade/', function (req, res) { var tid = req.query['tid']; offers.getOffer({ tradeofferid: tid }, function(err, trade) { if(err) { logger.error('Error checking trade'); logger.debug(err); res.json({ success: false, error: err.toString() }); } else { logger.debug(trade); if(trade.response.offer.trade_offer_state == 3) { res.json({ success: true, action: 'accept', result: 'Coins have been added to your balance' }); } else if(trade.response.offer.trade_offer_state == 7) { res.json({ success: true, result: 'You are declined trade', action: 'cross' }); } else { res.json({ success: false, error: 'You are not accept trade' }); } } }); });
function cancelTrade(offerid) { offers.declineOffer({ tradeOfferId: offerid }, function(err, log) { if (err) { logger.error('Не смогли отменить трейд #'+offerid); logger.debug(err); return; } logger.debug(log); logger.trace('Offer #'+offerid+' canceled'); }); }
query('SELECT * FROM
bots
WHEREid
= '+pool.escape(process.argv[2]), function(err, res) { if((err) || (!res[0])) { logger.error('Cant find account'); process.exit(0); return; } account = res[0]; app.listen(3000+account.id); logger.trace('We got account info'); account.twoFactorCode = SteamTotp.generateAuthCode(account.shared_secret); account.auth = false; logger.debug(account); community.login(account, login); });community.on('confKeyNeeded', function(tag, callback) { callback(null, time, SteamTotp.getConfirmationKey(account.identity_secret, time(), tag)); });
community.on('newConfirmation', function(confirmation) { var time = time(); var key = SteamTotp.getConfirmationKey(account.identity_secret, time, 'allow'); confirmation.respond(time, key, true, function(err) { if(err) { logger.error('Error on mobile auth'); logger.debug(err); return; } logger.trace('Trade sucesfully confirmed'); }); });
function query(sql, callback) { if (typeof callback === 'undefined') { callback = function() {}; } pool.getConnection(function(err, connection) { if(err) return callback(err); logger.info('DB connection ID: '+connection.threadId); connection.query(sql, function(err, rows) { if(err) return callback(err); connection.release(); return callback(null, rows); }); }); }
function login(err, sessionID, cookies, steamguard) { if(err) { logger.error('Auth error'); logger.debug(err); if(err.message == "SteamGuardMobile") { account.twoFactorCode = SteamTotp.generateAuthCode(account.shared_secret); logger.warn('Error in auth: '+account.twoFactorCode); setTimeout(function() { community.login(account, login); }, 5000); return; } process.exit(0); } logger.trace('Sucesfully auth'); account.sessionID = sessionID; account.cookies = cookies; community.getWebApiKey('csgobananas.com', webApiKey); community.startConfirmationChecker(10000, account.identity_secret); }
function webApiKey(err, key) { if(err) { logger.error('Cant make apikey') logger.debug(err); process.exit(0); return; } account.key = key; logger.trace('API key bot '+account.accountName+' '+account.key); offersSetup(); community.loggedIn(checkLoggedIn); }
function offersSetup() { logger.trace('Loaded steam-tradeoffers'); offers.setup({ sessionID: account.sessionID, webCookie: account.cookies, APIKey: account.key }); }
function checkLoggedIn(err, loggedIn, familyView) { if((err) || (!loggedIn)) { logger.error('We arent logged in') process.exit(0); } else { logger.trace('Logged in'); account.auth = true; } }
function makecode() { var text = ""; var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
}
function time() { return parseInt(new Date().getTime()/1000) }