Created
February 12, 2023 11:34
-
-
Save HiveSolution/54e0ad1cee00addbb42b698ff8f2fe42 to your computer and use it in GitHub Desktop.
runs through a list of known broken appIds and enables their inventory tab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @name Steam Inventory broken Tabs enabler | |
* @description Activate all currently known broken inventory tabs | |
* @version 1.0.0 | |
* @author RenokK | |
* @website https://steamcommunity.com/groups/InventoryService/discussions/0/1711816348630251347/ | |
*/ | |
const appIds = [ | |
422890, 961210, 912210, 870000, 973780, 714360, 2004920, 652410, 1959960, | |
1112870, 1064880, 743920, 1245900, 908330, 688880, 1216530, 2112730, 2152630, | |
1699740, 1313340, 854400, 1816880, 824290, 1444570, 860940, 2124390, 1249090, | |
800280, 1648840, 1337300, 857790, 1866220, 737630, 1172040, 752760, 857840, | |
882370, 1821580, 1720750, 2153990, 1664900, 2258440, 1335580, 1642600, | |
1258180, 1441880, 1353590, 1774100, 1930340, 1184790, 1385790, 1253670, | |
1577150, 1757190, 1471420, 1651680, 733430, 614940, 1340810, 1366160, 1260430, | |
821110, 820160, 1521290, 971450, 781790, 1391690, 451230, 576430, 1846370, | |
20136800, 1649980, 1416190, | |
]; | |
const buy = (appId) => { | |
return new Promise((resolve, reject) => { | |
$J.post("https://steamcommunity.com/market/createbuyorder/", { | |
sessionid: g_sessionID, | |
currency: 3, | |
appid: appId, | |
market_hash_name: "Steam+Inventory+Service", | |
price_total: 3, | |
quantity: 1, | |
}).done((data) => { | |
console.log(data); | |
resolve(); | |
}); | |
}); | |
}; | |
const buyAll = async () => { | |
for (let i = 0; i < appIds.length; i++) { | |
await buy(appIds[i]); | |
} | |
}; | |
buyAll(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment