Instalar o Steam
Iniciar sessão
|
Idioma
简体中文 (Chinês Simplificado)
繁體中文 (Chinês Tradicional)
日本語 (Japonês)
한국어 (Coreano)
ไทย (Tailandês)
Български (Búlgaro)
Čeština (Checo)
Dansk (Dinamarquês)
Deutsch (Alemão)
English (Inglês)
Español-España (Espanhol de Espanha)
Español-Latinoamérica (Espanhol da América Latina)
Ελληνικά (Grego)
Français (Francês)
Italiano (Italiano)
Bahasa Indonesia (Indonésio)
Magyar (Húngaro)
Nederlands (Holandês)
Norsk (Norueguês)
Polski (Polaco)
Português (Brasil)
Română (Romeno)
Русский (Russo)
Suomi (Finlandês)
Svenska (Sueco)
Türkçe (Turco)
Tiếng Việt (Vietnamita)
Українська (Ucraniano)
Relatar problema de tradução
| _ _|
/`ミ _x 彡
/ |
/ ヽ ノ
/ ̄| | | |
| ( ̄ヽ__ヽ_)_)
\二つ加我兄弟
F12 → Console
(function () {
var modal;
function listRequest() {
modal = ShowBlockingWaitDialog('请求中', '获取愿望单中...');
jQuery.post('https://steamproxy.com/steamstore/dynamicstore/userdata/' , {}).done(function (res) {
for (var i = 0; i < g_Wishlist.rgAllApps.length; i++) {
for (var j = 0; j < res.rgWishlist.length; j++) {
if (res.rgWishlist[j] == g_Wishlist.rgAllApps ) {
delete res.rgWishlist[j];
}
}
}
var delArray = [];
for (var j = 0; j < res.rgWishlist.length; j++) {
if (res.rgWishlist[j] != null) {
delArray.push(res.rgWishlist[j]);
}
}
modal.Dismiss();
webRequest(delArray, 0);
});
}
if (index >= packages.length) {
location.reload();
return;
};
if (packages[index] == null) {
webRequest(packages, index + 1);
return;
}
modal = ShowBlockingWaitDialog("清理中 " + (index) + "/" + packages.length, '删除愿望单游戏(' + packages[index] + ')中,请稍候...');
jQuery.post(g_strWishlistBaseURL + 'remove/', {
appid: packages[index],
sessionid: g_sessionID
}).done(function (res) {
modal.Dismiss();
webRequest(packages, index + 1);
});
}
listRequest();
})();