
xLeeJYx
Member-
Posts
100 -
Joined
-
Last visited
Everything posted by xLeeJYx
-
This is a problem and another problem is you are using the same name for loading both inventories. `loadInventory` and `getPartnerInventoryContents` both are using the same callback name `inventory`. This is making the code break
-
use getSteamGroup to get the group details and then getMembers to get the steamids of the members in your group. You can store the array somewhere in the code or anywhere u want it. Then check if the id is present in that array when a message is received
-
https://github.com/xLeeJYx/TF2-Crafting-Recipe/blob/master/craftRecipe.json Follow that, and btw you have to craft scrap to reclaimed, then reclaimed to refined. You cant go x9 scrap immediately to refined
-
you should get it in a few minutes once the function is executed. im just curious if you are logged in when you use this function
-
https://github.com/DoctorMcKay/node-steam-user#changeemailoptions-callback you need the code sent to your email
-
callback bro. You didnt do anything
-
Cannot read property 'market_hash_name' of undefined
xLeeJYx replied to youssefsoua's topic in node-steam-tradeoffer-manager
function checkAvailableKey(inventory,acceptedKeyList){ var i = 0; var availableKey = new Array(); while (i <= inventory.length){ if (acceptedKeyList.indexOf(inventory[i].market_hash_name) !== -1){ availableKey.push(i); i++; } else{ i++; } } return availableKey; } try changing it to this, function checkAvailableKey(inventory,acceptedKeyList){ var i = 0; var availableKey = new Array(); while (i <= inventory.length){ if (acceptedKeyList.indexOf(inventory[i].market_hash_name) >= 0){ availableKey.push(i); i++; } else{ i++; } } return availableKey; } -
the first callback is your steamguard details, and your first code only have 1 callback function which automatically is your steamguard details
-
that is what you surposed to do .... you only put 1 callback function and it automatically is the first callback (steamguard activated or no)
-
https://github.com/DoctorMcKay/node-steam-user#getsteamguarddetailscallback
-
can you use your pc without a motherboard ? If you don't get it.... No
-
There's a thing called google =_=
-
My Bot Dont Sending Any Trade Offer
xLeeJYx replied to 1Life1Chance's topic in node-steam-tradeoffer-manager
You cant expect us to imagine what you coded -
is there a method for offers accepted?
xLeeJYx replied to LuciFer's topic in node-steam-tradeoffer-manager
its called event. manager.on('sentOfferChanged',function(offer,oldstate){ /* Do your stuff */ }) https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOfferManager#sentofferchanged -
Explored the tf2 item files and found the full list of them. If you need it you can pm me
-
Hello, was wondering you have a fill list of TF2 crafting recipe numbers. I manage to get some by myself by crafting Craft Weapon x2 = 3 Scrap x3 -> Reclaimed = 4 Reclaimed x3 -> Refined = 5 Craft Weapon x3 -> Class Token = 7 Craft Weapon x3 -> Slot Token = 8 Craft Weapon + Class Token -> Class Token = 13 Craft Weapon + Slot Token -> Slot Token = 14 Reclaimed -> Scrap x3 = 22 Refined -> Reclaimed x3 = 23
-
Need Help about automatic smelting tf2 metals
xLeeJYx replied to TextDynasty's topic in node-steam-tradeoffer-manager
Lol i havent start playing much with it yet. Only thing i did what sorting bp using it. Youll need extra work for that -
Need Help about automatic smelting tf2 metals
xLeeJYx replied to TextDynasty's topic in node-steam-tradeoffer-manager
play with node-tf2 -
var SteamUser = require('steam-user'); var newUser = new SteamUser(); var details = { "accountName": '<username>', "password": '<password>' } newUser.logOn(details);Try doing this