Jump to content
McKay Development

venfiw

Member
  • Posts

    36
  • Joined

  • Last visited

Everything posted by venfiw

  1. help i can accept the offer in web but can't accept it with node-steamcommunity in some reason our country block the steamcommunity.com when we visit the site our targetlink will be reset,so if we want visit steamcommunity.com we must use a vpn and one day some one find the way to visit it without vpn it's called Reverse Proxy, i thought.(sry for my bad english) The question is now i can visit steamcommunity.com with web and steamclient, but i can't visit is by node-steamcommunity the first offer worked becacuse i use a another ipaddress in hosts, and then i change the hosts to my Reverse Proxy server, and then show Unable to accept offer: self signed certificate what should i do ? can you give me some suggestions? I am very grateful to you for reading these. thanks
  2. Hi Sir I thought find a very strange problem. I used two accounts run a same code, it works, code is here: if (message == "!inventory") { client.chatMessage(steamID,"I got your commands, please wait"); community.getUserInventoryContents("[U:1:136393544]", 730, 2, true, (ERR, INV, CURR, TOL) => { console.log(INV) var itemname = ""; for (var i = 0; i < INV.length; i++) { itemname += "<" + i + ">" + INV[i].market_hash_name + "\n"; } client.chatMessage(steamID, "Here is my Inventory info: \nALL items : " + TOL + " Tradable : " + INV.length); client.chatMessage(steamID, "TradableList : \n" + itemname); }) } i user a other code ,i thought this code can count my csgo keys by load twice or more times inventory and it works, when i login bot1 check bot2 inventory, function reload(steamID){ client.chatMessage(steamID,"I got your commands, please wait"); for (var i = 0; i < CONFIG.CHECKLIST.length; i++) { searchitem(steamID,CONFIG.STEAMUID, CONFIG.CHECKLIST[i]); } } function searchitem(steamID, steamuid, scmname){ community.getUserInventoryContents(steamuid, 730, 2, false, (ERR, INV, CURR, TOL) => { if (ERR) { console.log("err") } else { console.log("Search " + scmname); var amount = 0; for (var i = 0; i < INV.length; i++) { if (INV[i].market_hash_name == scmname){ console.log(" ## Inventory Number: " + i); amount++; } } client.chatMessage(steamID,scmname + " : " + amount); } }); } module.exports ={ STEAMUID: "[U:1:840063816]", CHECKLIST: [ "Chroma Case Key",//幻彩123光谱12伽马12 "Chroma 2 Case Key", "Chroma 3 Case Key", "Spectrum Case Key", "Spectrum 2 Case Key", "Gamma Case Key", "Gamma 2 Case Key", "Horizon Case Key",//地平命悬手套弯曲暗影 "Clutch Case Key", "Glove Case Key", "Falchion Case Key", "Shadow Case Key", "eSports Key",//电竞左轮原生猎人大行动 "Revolver Case Key", "CS:GO Case Key", "Huntsman Case Key", "Winter Offensive Case Key", "Operation Breakout Case Key", "Operation Wildfire Case Key", "Operation Vanguard Case Key", "Operation Phoenix Case Key", ] } then Strange things happened, when i login bot2 check bot2 inventory, i get error,When the second execution of the command getUserInventoryContents, The same result happens on another account. bot1 can load bot2 bot3 and other account's inventory twice or more, Except himself bot2 can load bot1 bot3 and other account's inventory twice or more, Except himself SO i thought maybe wen can't load myown inventory toomany times. then i user once load function checkitem(steamID){ community.getUserInventoryContents(CONFIG.STEAMUID, 730, 2, false, (ERR, INV, CURR, TOL) => { if (ERR) { console.log("err") } else { var amount = new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0); for (var i = 0; i < INV.length; i++) { for (var j = 0; j < CONFIG.CHECKLIST.length; j++) { if (INV[i].market_hash_name == CONFIG.CHECKLIST[j]){ console.log(" ## Inventory Number: " + i); amount[j]++; } } } var message ="" for (var i = 0; i < CONFIG.CHECKLIST.length; i++) { message = message + CONFIG.CHECKLIST[i] + " : " + amount[i] + "\n" } client.chatMessage(steamID,message) } }); } finally i make it
  3. client.on('wallet', function(hasWallet, currency, balance) { if (balance >= 0) { let playThis = CONFIG.PLAYGAMES; playThis = playThis.toString().replace(/replacebalance/,"游戏代购 ¥:" + balance); console.log("### This bot have Wallet Balance: " + balance) wallet = balance; } }); client.on("friendMessage", function(steamID, message) { if (message == "!check") { client.chatMessage(steamID, "我账号上面还有:¥" + wallet); }; }); hello every one i user this code can check my bot wallet, is there any possible i can get how many csgokeys my robot has?
  4. hello every one, i make promptSteamGuardCode is true so i can remove the SHAREDSECRET from my servers and i input the Guardcode every time now i want make the same thing to my accountName and password, so i can remove my USERNAME and PASSWORD from the servers, i thought it is safe. haker can't get my account after he get my servers. so , what should i do now , i search from the google and i get a way to use readline but it is so hard to me, may be i can get a easy way from here.
  5. i saw one guy he use this to make Crafting scrap
  6. thank u my friend, it worked after i replace community.checkConfirmations();
  7. manager.on('newOffer', function(offer) { console.log("New offer #" + offer.id + " from " + offer.partner.getSteamID64()); if (offer.partner.getSteamID64() === config.ownerID) { offer.accept(function(err) { if (err) { console.log("Unable to accept offer: " + err.message); } else { community.checkConfirmations(); // Check for confirmations right after accepting the offer client.chatMessage(offer.partner.getSteamID64(), "Thanks for trade with me"); console.log("Offer accepted"); } }) } else { offer.decline(function(err) { if (err) { console.log("Unable to decline offer: " + err.message); } else { community.checkConfirmations(); // Check for confirmations right after declineing the offer client.chatMessage(offer.partner.getSteamID64(), "Sorry, I'm not ready to trade with you yet"); console.log("Offer decline"); } }) } }); when i gave my bot one skin,it's can accept. when i take this skin back it's can't work. it just don't confirmations the offer,but told me Thanks for trade with me,and i can see Offer accepted on console. same code can work before yestarday,but it can't work now
×
×
  • Create New...