Jump to content
McKay Development

Fartura

Member
  • Posts

    8
  • Joined

  • Last visited

Fartura's Achievements

  1. I want to make a bot of public exchanges, and the bot only accept the trades that I earn profit ..
  2. Hello, I wanted to create a bot of trades, I already have everything ready, just missing the essential, the exchanges. I already researched everything but I can not create a bot of exchanges .. the maximum where I arrived was this: manager.on('newOffer', (offer) => { if (offer.partner.getSteamID64() === 'trust steamid64') { offer.accept((err, status) => { if (err) { console.log(err); } else { console.log(`Accepted offer. Status: ${status}.`); } }); } else { offer.decline((err) => { if (err) { console.log(err); } else { console.log('Canceled offer from scammer.'); } }); } }); I wanted my bot to trade and I made a profit, but I do not really know how to do it and I do not understand a lot of code, can someone please help me? PLEASE <3
  3. thanks, it was not working but I changed places and it already works, thank you. one more question, can I erase the friendship after a while? for example, my bot accepts the friendship today at 1:00 p.m. and erases the friendship tomorrow at 1:00 p.m.? What is the code for this to work?
  4. I do not think you understood my objective.I want that when the person adds me to appear in the chat of the personHello (here the name of the person who added me)! Thanks for add me, if you need help write! Help
  5. sorry but I'm not very good with code How should I put my code? Is he as he should be? client.on('friendRelationship', (steamid, relationship) => { if (relationship === 2) { client.addFriend(steamid);client.chatMessage(steamid, 'Hello! Obrigado por me adicionar, se você precisar de ajuda, escreva! help''); console.log("You add " + (steamid)) }});
  6. my bot accepts requests for friendship, I want to know how do I delete the past friendship requests for example 7 days
  7. Hello I wanted to make my bot when someone adds it said "hello (name of person) thanks for adding" how do I? I only have this but I do not know how to put the person's name I have this: how to customize to show the person's name? client.on('friendRelationship', (steamid, relationship) => { if (relationship === 2) { client.addFriend(steamid);client.chatMessage(steamid, 'Hello! Thanks for add me, if you need help write !help'); console.log("You add " + (steamid)) }});
×
×
  • Create New...