Jump to content
McKay Development

xLeeJYx

Member
  • Posts

    100
  • Joined

  • Last visited

Profile Information

  • Gender
    Male

Recent Profile Visitors

738 profile views

xLeeJYx's Achievements

  1. 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
  2. xLeeJYx

    solved.

    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
  3. @2can your newOffer event should be processOffer(offer) Its better off you coding it yourself since you can learn your mistake and improve. Not by copying blindly from others and not knowing what is it doing
  4. 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
  5. 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
  6. https://github.com/DoctorMcKay/node-steam-user#changeemailoptions-callback you need the code sent to your email
  7. 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; }
  8. xLeeJYx

    mobile phone

    the first callback is your steamguard details, and your first code only have 1 callback function which automatically is your steamguard details
  9. xLeeJYx

    mobile phone

    that is what you surposed to do .... you only put 1 callback function and it automatically is the first callback (steamguard activated or no)
  10. xLeeJYx

    mobile phone

    https://github.com/DoctorMcKay/node-steam-user#getsteamguarddetailscallback
  11. without scraping it do you know their inputs and where to POST it to ? btw change your attitude, before you ask people to rethink their life decision, think about yours first
  12. can you use your pc without a motherboard ? If you don't get it.... No
  13. O.o seems interesting. wanna know where does he get to those links
  14. i dont think so there are such function. Maybe try scraping the html page ?
×
×
  • Create New...