mrxbell Posted February 7, 2017 Report Posted February 7, 2017 How get all items of DOTA2 , TF2, CS:GO . Thanks ! Quote
UKF Posted February 8, 2017 Report Posted February 8, 2017 (edited) //730 for csgo, 2 for contextid, true for tradableOnly //This will load a user's inventory or you can use it for your own inventory (optional), but there's loadInventory which is used to get your own client's inventory. manager.loadUserInventory(YOUR_TARGET_STEAMID, 730, 2, true, function (err, inventory, currencies) { if (err) { console.log(err.message); } else { console.log(inventory); } }); More information can be found here. Best regardsUKF Edited February 8, 2017 by UKF Quote
mrxbell Posted February 9, 2017 Author Report Posted February 9, 2017 //730 for csgo, 2 for contextid, true for tradableOnly //This will load a user's inventory or you can use it for your own inventory (optional), but there's loadInventory which is used to get your own client's inventory. manager.loadUserInventory(YOUR_TARGET_STEAMID, 730, 2, true, function (err, inventory, currencies) { if (err) { console.log(err.message); } else { console.log(inventory); } }); More information can be found here. Best regardsUKF Thanks. But i need get all items (example DOTA2 have ~ 10 000 items ...) . Quote
UKF Posted February 9, 2017 Report Posted February 9, 2017 Thanks. But i need get all items (example DOTA2 have ~ 10 000 items ...) . Just change the appid to 570, and change the context id, I have no idea if it's 0,1 or 2, just try it.The inventory is an array of your items, inventory.forEach(function (item)){ console.log(item.market_hash_name); } This will print the item's market hash name for example. Quote
mrxbell Posted February 9, 2017 Author Report Posted February 9, 2017 Just change the appid to 570, and change the context id, I have no idea if it's 0,1 or 2, just try it.The inventory is an array of your items, inventory.forEach(function (item)){ console.log(item.market_hash_name); } This will print the item's market hash name for example.Thank. But this is only iventory of one account. I need get all items in game ? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.