- 积分
- 13416
- 主题
- 贡献
-
- 金币
- 币
- 精华
- UID
- 9876748
- 积分
- 13416
- 帖子
- 注册时间
- 2021-9-23
- 阅读权限
- 255
- 最后登录
- 1970-1-1
- 在线时间
- 小时
|
发表于 2022-4-21 21:57
|阅读模式
这两个入库的方法不能保证人人有效,贴吧的网友有测试成功的,,小编也是用第二个方法测试后成功了。现在分享个大家。
方法一:
打开steam,win+r然后输入这个 steam://install/1665460(前提还是要挂加速器)
方法二:
1.打开网页版steam 点账户明细。
2.点击查看许可和序号激活
3.鼠标右键 审查元素或者直接F12
4、开控制台,点击console,将下面代码粘贴进去,然后enter回车,会提示All Done enjoy.就成功了。
(function() {
if (location.hostname !== 'store.steampowered.com') {
alert('在 Steam Store 上运行此代码!');
返回;
} else if (typeof jQuery !== 'function') {
ShowAlertDialog('Fail', 'This page have no jQuery, try homepage.');
返回;
} else if (document.getElementById('header_notification_area') === null) {
ShowAlertDialog('Fail', 'You must be login.');
返回;
}
var freePackages = [591926];
var loaded = 0,
total = freePackages.length,
modal = ShowBlockingWaitDialog('Executeing...', '请等到所有请求完成。
for (var i = 0;i <总计;i++) {
jQuery.post(
'//store.steampowered.com/checkout/addfreelicense', {
action: 'add_to_cart',
sessionid: g_sessionID,
subid: freePackages
},
function(data) {
loaded++;
modal.dismiss();
if (loaded === total) {
ShowAlertDialog('All done!', 'Enjoy.');
} else {
modal = ShowBlockingWaitDialog('Executeing...', 'Loaded ' + loaded + '/' + total);
}
}
).fail(function() {
loaded++;
modal.dismiss();
if (loaded === total) {
ShowAlertDialog('All done!', 'Enjoy.');
} else {
modal = ShowBlockingWaitDialog('Executeing...', 'Loaded ' + loaded + '/' + total);
}
});
}
}());
|
|