Rehber Steam Yaz Etkinliği 2022 Otomatik Görev Tamamlayıcı Script

Katılım
29 Mart 2017
Mesajlar
1.719
Çözümler
56
Yer
Dünya
Daha fazla  
Cinsiyet
Diğer
Merhaba bu script sayesinde Steam Yaz Etkinliği 2022 görevlerini kolayca bitirip güzel bir profile sahip olacaksınız.

Mağazada bulunan bu görsele tıklayın.
1656875487630.png


Ardından sizi görevlerin yapılacağı yere gönderecek burada Chrome kullanıcıları F12 tuşuna basarak konsolu açmalı.
1656875556401.png


Daha sonra şu kodları boş olan sayfaya yapıştırıp klavyenizden Enter tuşuna basmalısınız.
Kod:
/* Thanks to Sqbika#0657 for the initial script */

(async() => {
    if (!jQuery("#application_config").data("userinfo")) {
        // eslint-disable-next-line no-alert
        alert("Sale settings not found. Redirecting to a compatible page...");
        location.href = "https://store.steampowered.com/sale/clorthax_quest";
        return;
    }

    let delay = (ms) => new Promise((res) => setTimeout(res, ms));
    let { authwgtoken } = jQuery("#application_config").data("userinfo");
    await jQuery.post("/saleaction/ajaxopendoor", {
        authwgtoken,
        "sessionid":      g_sessionID,
        "door_index":     0,
        "clan_accountid": 41316928,
    });
    for (let link of [
        "/category/arcade_rhythm/?snr=1_614_615_clorthaxquest_1601",
        "/category/strategy_cities_settlements/?snr=1_614_615_clorthaxquest_1601",
        "/category/sports/?snr=1_614_615_clorthaxquest_1601",
        "/category/simulation/?snr=1_614_615_clorthaxquest_1601",
        "/category/multiplayer_coop/?snr=1_614_615_clorthaxquest_1601",
        "/category/casual/?snr=1_614_615_clorthaxquest_1601",
        "/category/rpg/?snr=1_614_615_clorthaxquest_1601",
        "/category/horror/?snr=1_614_615_clorthaxquest_1601",
        "/vr/?snr=1_614_615_clorthaxquest_1601",
        "/category/strategy/?snr=1_614_615_clorthaxquest_1601",
    ]) {
        try {
            let html = await jQuery.get(link);
            await jQuery.post("/saleaction/ajaxopendoor", {
                "sessionid":      g_sessionID,
                "authwgtoken":    jQuery("#application_config", html).data("userinfo").authwgtoken,
                "door_index":     jQuery("#application_config", html).data("capsuleinsert").payload,
                "clan_accountid": 41316928,
                "datarecord":     jQuery("#application_config", html).data("capsuleinsert").datarecord,
            });
            console.log("You got a new badge!");
        } catch (e) {
            console.error("Failed to obtain badge!", e);
        } finally {
            await delay(1500);
        }
    }
    await jQuery.post("/saleaction/ajaxopendoor", {
        authwgtoken,
        "sessionid":      g_sessionID,
        "door_index":     11, // final reward
        "clan_accountid": 39049601, // https://store.steampowered.com/news/group/39049601
    }).done((json) => {
        // eslint-disable-next-line eqeqeq
        if (json.success == 1) {
            console.log("Claimed final reward!");
        } else {
            console.error("Failed to claim final reward.\nTry again or claim it yourself?", json);
        }
    })
        .fail(() => { console.error("Final reward request failed!"); });
})();

Bir iki dakika veya saniyeler içinde "
1656875730079.png
" yazısını gördüğünüzde işlem tamam demektir. Eşyalar steam envanterinize geliyor.


Herkese iyi eğlenceler. Ayrıca Mağazada bulunan keşfetme kuyruğunu tek tek yapın oyunları sırayla geçin size steam kartı verecek ister satın ister işleyip bedava xp kazanın size kalmış, her 24 saatte bir bu kuyruğu yapıp kart kazanabilirsiniz.
1656875791297.png


Kartları otomatik tamamlamak istersenizde aynı adımları izleyin ama kod farklı;
Kod:
// Unfortunately I don't remember the origin of this script, but it's super useful.
// https://store.steampowered.com/explore/

var Queue = function(x) {
    console.log('Current queue: ' + ++x);

    jQuery.post('https://store.steampowered.com/explore/generatenewdiscoveryqueue', {
        sessionid: g_sessionID,
        queuetype: 0
    }).done(function(data) {
        var requests = [];

        for (var i = 0; i < data.queue.length; i++) {
            requests.push(jQuery.post('https://store.steampowered.com/app/10', {
                appid_to_clear_from_queue: data.queue[i],
                sessionid: g_sessionID
            }));
        }

        jQuery.when.apply(jQuery, requests).done(function() {
            if (x < 3) {
                Queue(x);
            } else {
                window.location.reload();
            }
        });
    });
};

Queue(0);

store.steampowered.com/explore sayfasındayken konsola bunu yapıştırın hızlıca sizin yerinize halledecek ve kartı otomatik olarak alacaksınız.
 
Son düzenleyen: Moderatör:
Kuşkusuz bu sene Steam'in etkinliği çok saçmaydı. Keşif kuyruğu olayını sık sık yapardı ama asıl bulmacalar öylesine saçma geldi kapattım. Şimdi sayende öğrendim bilseydim başından beri girerdim keşife, belki bir rozet alırdık. 😒
 

Geri
Yukarı