高级玩家

- 贡献度
- 0
- 金元
- 3013
- 积分
- 301
- 精华
- 0
- 注册时间
- 2008-12-27
|
不要登客户端,网页版steam登陆账号 第一步打开网页版steam登录,f12打开控制台,点击console,将代码粘贴进去,然后enter回车,会提示All Done enjoy.就成功了 复制代码。 (function() { if (location.hostname !== 'store.steampowered.com') { alert('Run this code on the Steam Store!'); return; } else if (typeof jQuery !== 'function') { ShowAlertDialog('Fail', 'This page has no jQuery, try homepage.'); return; } else if (document.getElementById('header_notification_area') === null) { ShowAlertDialog('Fail', 'You have to be logged in.'); return; } var freePackages = [591926]; var loaded = 0, total = freePackages.length, modal = ShowBlockingWaitDialog('Executing...', 'Please wait until all requests finish.'); for (var i = 0; i < total; i++) { jQuery.post( '//store.steampowered.com/checkout/addfreelicense', { action: 'add_to_cart', sessionid: g_sessionID, subid: freePackages[i] }, function(data) { loaded++; modal.Dismiss(); if (loaded === total) { ShowAlertDialog('All done!', 'Enjoy.'); } else { modal = ShowBlockingWaitDialog('Executing...', 'Loaded ' + loaded + '/' + total); } } ).fail(function() { loaded++; modal.Dismiss(); if (loaded === total) { ShowAlertDialog('All done!', 'Enjoy.'); } else { modal = ShowBlockingWaitDialog('Executing...', 'Loaded ' + loaded + '/' + total); } }); } }()); 之后登录steam客户端,库,下载。 即可入库。
|
|