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

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.
Eki Görüntüle 1440107

Ardından sizi görevlerin yapılacağı yere gönderecek burada Chrome kullanıcıları F12 tuşuna basarak konsolu açmalı.
Eki Görüntüle 1440108

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 "Eki Görüntüle 1440116" 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.
Eki Görüntüle 1440118

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.

Hocam teşekkürler, işe yaradı ancak sıkıntı yaratmaz değil mi? Güvenlik vs. açısından.
 
Hocam teşekkürler, işe yaradı ancak sıkıntı yaratmaz değil mi? Güvenlik vs. açısından.
Yaratmaz, kodlar sadece sizin yerinize tıklamanız gereken yerleri tıklıyor. Hesabınıza her hangi bir müdehalesi yok. Kordinatları belirlenmiş butonlara sizin yerinize tıklıyormuş gibi düşünün, böylece görevleri hızlıca bitirmenizi sağlıyor. Her sene bunun gibi scriptleri kullanırız.
 
VM171:4 Uncaught (in promise) ReferenceError: jQuery is not defined
at <anonymous>:4:5
at <anonymous>:61:3
böyle bir şey alıyorum ne yapmam gerekiyor
 

Geri
Yukarı