
mrxbell
Member-
Posts
44 -
Joined
-
Last visited
Everything posted by mrxbell
-
I don't think so. I think bot make too much trade offer .
-
How many items limited per trade ? Thanks !
-
I only receive 1 item. Because order is not reason . I need get new assetid, if not using getReceivedItems how can do this ?
-
When i receive offer . I get market_hash_name using offer.itemsToReceive[0].market_hash_name But when i using offer.getReceivedItems(function (err, items) { //Why items[0].market_hash_name !== offer.itemsToReceive[0].market_hash_name } It only happen when i received item in game PUBG (example item with market_hash_name: 'Combat Pants (camo)' ) Thanks !
-
this.community.inviteUserToGroup("steamID", "groupID", function(err){ console.log ("------------------------"); console.log(err); // HTTP error 400 console.log ("------------------------"); }); Sometime i recived err == null (success) . Thanks !
-
Sometime bot see error : user.on("disconnected", function(result, reason) { console.log("Disconnected from Steam with reason : " + reason); // reason == 'Disconnected' }); how fix that ?
-
SteamTotp.getTimeOffset(function(error, offset, latentcy){ console.log(error); // i recived error }); How fix this err ? Thanks
-
When i using function getOfferrs i received Error: socket hang up . Please help , Thanks ! getOffers(1, function(err, sent, received){ // I received Error: socket hang up })
-
Question Can't get webSession after webLogOn
mrxbell replied to samki's topic in node-steam-tradeoffer-manager
I think you wrong this : if (this._client.steamID !== null) { ...} i'm not sure but i think you can try with this._community.on("sessionExpired", function(err) { this._client.webLogOn(); }- 4 replies
-
- node.js
- node-steam-tradeoffer-manager
-
(and 1 more)
Tagged with:
-
Error display when items in inventory does not exits. you can see more there : https://steamerrors.com/26
-
When i using marketSearch function body.total_count result this always not correct ? ( always > total_count on website of steam ? ). This is not err . Thank All. When logged and see market steam filter data because result is difference . I realizeI realize
-
Couldn't get received items: Error: socket hang up
mrxbell replied to mrxbell's topic in node-steam-tradeoffer-manager
I only using localAddress in SteamCommunityEx : community = new SteamCommunity({localAddress: ipAdress}); -
Thanks !
-
community = new SteamCommunity({localAddress: ipAdress}); If i use IP V6 and add code as above Do Steamcommunity working ?
-
Some time bot login again . I want to know how long session expired . And how increase time session live . Thank !
-
Thank you very much !
-
This is example view tradeoffers history incomming and send ( When you login you can view ) . Thanks ! http://steamcommunity.com/id/name_account/tradeoffers/?history=1 http://steamcommunity.com/id/name_account/tradeoffers/sent/?history=1
-
Thanks. I use parameters is steamID64 because i think userID.getSteamID64() will not work .
-
But if not check i see other error Cannot read property 'getSteamID64' of undefined in if(userID.getSteamID64() == self.steamID.getSteamID64()) \node_modules\steamcommunity\components\users.js: 371
-
I want check inventory public before call method getUserInventoryContents ? Thanks !
-
Thanks. I use method marketSearch always return Error: HTTP error 429 . I try change IP but not worked.
-
I need get price item on market . If i use API only get one price https://steamcommunity.com/market/priceoverview/?country=US¤cy=1&appid=570&market_hash_name= How i can get all price items. Thanks !