- Дней с нами
- 3.526
- Розыгрыши
- 0
- Сообщения
- 107
- Репутация
- 36
- Реакции
- 209
Скрипт для расширения Tampermonkey:
https://chrome.google.com/webstore/...gf?utm_source=chrome-app-launcher-info-dialog
Скрипт покупает гифты в подарок пока не выбьет ошибку, а затем переходит в инвентарь
скрипт сам включается после перехода на страницу игры
https://chrome.google.com/webstore/...gf?utm_source=chrome-app-launcher-info-dialog
Скрипт покупает гифты в подарок пока не выбьет ошибку, а затем переходит в инвентарь
скрипт сам включается после перехода на страницу игры
// ==UserScript==
// @name Покупка игры за 1 цент (Caveman World: Mountains of Unga Boonga)
// @version 0.1
// @match http://store.steampowered.com/app/462960/*
// @match http://store.steampowered.com/cart/
// @match https://store.steampowered.com/checkout/?purchasetype=gift
// @GranT none
// ==/UserScript==
if(window.location == "https://store.steampowered.com/checkout/?purchasetype=gift")
{
document.getElementsByClassName('send_choice_radio')[2].click();
javascript:SubmitGiftDeliveryForm();
window.setTimeout(function() {
document.getElementById('accept_ssa').checked = true;
javascript:FinalizeTransaction();
window.setTimeout(function() {
window.location = "http://store.steampowered.com/app/462960/";
}, 4000);
}, 4000);
}
if(window.location.href.slice(0, 40) == "http://store.steampowered.com/app/462960")
{
if(document.getElementsByClassName('discount_final_price')[0].innerHTML == "$0.01 USD")
{
document.getElementsByClassName('btnv6_green_white_innerfade btn_medium')[0].click();
}
}
if(window.location == "http://store.steampowered.com/cart/")
{
if(document.getElementsByClassName('price')[1].innerHTML == "$0.01")
{
document.getElementsByClassName('btnv6_green_white_innerfade btn_medium continue')[0].click();
}
}
window.setInterval(function() {
if(window.location == "https://store.steampowered.com/checkout/?purchasetype=gift")
{
if(document.getElementById('error_display').innerHTML == "За последние несколько часов вы пытались совершить слишком много покупок. Пожалуйста, подождите немного.")
{
window.location = "http://steamcommunity.com/my/inventory#753";
}
}
}, 250);
// @name Покупка игры за 1 цент (Caveman World: Mountains of Unga Boonga)
// @version 0.1
// @match http://store.steampowered.com/app/462960/*
// @match http://store.steampowered.com/cart/
// @match https://store.steampowered.com/checkout/?purchasetype=gift
// @GranT none
// ==/UserScript==
if(window.location == "https://store.steampowered.com/checkout/?purchasetype=gift")
{
document.getElementsByClassName('send_choice_radio')[2].click();
javascript:SubmitGiftDeliveryForm();
window.setTimeout(function() {
document.getElementById('accept_ssa').checked = true;
javascript:FinalizeTransaction();
window.setTimeout(function() {
window.location = "http://store.steampowered.com/app/462960/";
}, 4000);
}, 4000);
}
if(window.location.href.slice(0, 40) == "http://store.steampowered.com/app/462960")
{
if(document.getElementsByClassName('discount_final_price')[0].innerHTML == "$0.01 USD")
{
document.getElementsByClassName('btnv6_green_white_innerfade btn_medium')[0].click();
}
}
if(window.location == "http://store.steampowered.com/cart/")
{
if(document.getElementsByClassName('price')[1].innerHTML == "$0.01")
{
document.getElementsByClassName('btnv6_green_white_innerfade btn_medium continue')[0].click();
}
}
window.setInterval(function() {
if(window.location == "https://store.steampowered.com/checkout/?purchasetype=gift")
{
if(document.getElementById('error_display').innerHTML == "За последние несколько часов вы пытались совершить слишком много покупок. Пожалуйста, подождите немного.")
{
window.location = "http://steamcommunity.com/my/inventory#753";
}
}
}, 250);