Jump to content
McKay Development

Search the Community

Showing results for tags 'steambot'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News & Announcements
    • Releases & Updates
  • Help & Support
    • General
    • Guides
    • node-steam-user
    • node-steamcommunity
    • node-steam-tradeoffer-manager
    • node-steam-session

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Skype


Location


Interests

Found 1 result

  1. Hello everyone, i just make my steam trashbot but I try to make it more different from the others bots. I try to post a comment on the user profile that give me something (items that are not necessary) from his inventory. The problem is that the bot receives an error when it tries to post. This is the code: // main.js const SteamUser = require('steam-user'); const TradeOfferManager = require('steam-tradeoffer-manager'); const initFriendsManager = require('./friendsManager'); const acceptTradeOffer = require('./tradeManager'); // Import the acceptTradeOffer function const comeOnline = require('./comeOnline'); // Import the comeOnline module const SteamTOTP = require('steam-totp'); // Import SteamTOTP module for generating two-factor authentication code const SteamCommunity = require('steamcommunity'); // Import SteamCommunity module const client = new SteamUser(); const manager = new TradeOfferManager({ steam: client, domain: 'example.com', language: 'en', pollInterval: 10000, apiKey: '' // your API key }); const logOnOptions = { accountName: '', // login credentials password: '', // your password twoFactorCode: SteamTOTP.generateAuthCode('') // Add your shared secret here }; const community = new SteamCommunity(); // Initialize the SteamCommunity object client.logOn(logOnOptions); client.on('loggedOn', () => { console.log('Logged into Steam.'); client.setPersona(SteamUser.EPersonaState.Online); client.gamesPlayed([]); }); client.on('webSession', (sessionID, cookies) => { manager.setCookies(cookies, (err) => { if (err) { console.error(err); process.exit(1); return; } console.log('TradeOfferManager ready.'); }); initFriendsManager(client); }); // Add the event handler for new offers here manager.on('newOffer', (offer) => { console.log('New trade offer received.'); acceptTradeOffer(manager, client, offer, community); // Pass client and community objects }); // Add the following lines to integrate the deleteAllFriends function const ownerSteamID = ''; // Replace with the owner's SteamID comeOnline.deleteAllFriends(client, ownerSteamID); and this is the tradeManager.js //tradeManager.js function acceptTradeOffer(manager, client, offer, community) { console.log('Received trade offer from SteamID:', offer.partner.getSteamID64()); if (offer.itemsToReceive.length > 0 && offer.itemsToGive.length === 0) { setTimeout(() => { offer.accept((err, status) => { if (err) { console.error('Error accepting offer:', err); } else { console.log('Trade offer with items to receive (no items to give) accepted:', status); const partnerId = offer.partner.getSteamID64(); console.log('Partner ID:', partnerId); if (client.myFriends && client.myFriends[partnerId]) { console.log('Partner is a friend.'); postComment(community, partnerId); } else { console.log('Partner is not a friend.'); } } }); }, 5000); } else if (offer.itemsToGive.length > 0) { setTimeout(() => { offer.decline((err, status) => { if (err) { console.error('Error declining offer:', err); } else { console.log('Trade offer with items to give declined.'); } }); }, 5000); } } function postComment(community, partnerId) { console.log('Attempting to post comment for partner:', partnerId); // Simulate a delay before posting a comment setTimeout(() => { community.postUserComment(partnerId, "Thanks for the gift!", (err) => { if (err) { console.error('Error posting comment:', err); // Retry posting comment or handle the error accordingly } else { console.log('Comment posted successfully.'); } }); }, 60000); // Wait for 1 minute before posting a comment } module.exports = acceptTradeOffer; The bot check if the person that send the gift is in their friend list, if it is the bot post a comment on his profile. Console log: Logged into Steam. TradeOfferManager ready. New trade offer received. Received trade offer from SteamID: 76561198023414915 Trade offer with items to receive (no items to give) accepted: accepted Partner ID: 76561198812293087 Partner is a friend. Attempting to post comment for partner: 76561198023414915 after the 1 min delay i receive this: Error posting comment: Error: The settings on this account do not allow you to add comments. I can post comments manually with the bot but not with the script. Thank you. every solution is welcome.
×
×
  • Create New...