Created
August 4, 2022 02:41
-
-
Save lxfly2000/a427ce4382350badad9c4e9a40ab2d0d to your computer and use it in GitHub Desktop.
找出steam愿望单中下架的游戏
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
//在愿望单页面上执行以下代码即可得到AppID,然后在SteamDB上找就行了 | |
for(var id of g_rgWishlistData){ | |
if(g_Wishlist.rgAllApps.indexOf(id.appid.toString())==-1){ | |
console.log(id); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment