Last active
June 25, 2022 04:33
-
-
Save howar31/d0b1a253fef77c9ea0a38644206d89fa to your computer and use it in GitHub Desktop.
Go to https://store.steampowered.com/sale/clorthax_quest and paste the script into devtool (F12/Ctrl Shift I/Cmd Shift I)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let delay = (ms) => new Promise((res) => setTimeout(res, ms)); | |
await jQuery.post("/saleaction/ajaxopendoor", { | |
sessionid: g_sessionID, | |
authwgtoken: jQuery("#application_config").data("userinfo").authwgtoken, | |
door_index: 0, | |
clan_accountid: 41316928, | |
}); | |
var i = 1; | |
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", { | |
clan_accountid: 41316928, | |
sessionid: g_sessionID, | |
authwgtoken: jQuery("#application_config", html).data("userinfo").authwgtoken, | |
door_index: jQuery("#application_config", html).data("capsuleinsert").payload, | |
datarecord: jQuery("#application_config", html).data("capsuleinsert").datarecord, | |
}); | |
console.log("Get badges successfully: " + i); | |
i++; | |
} catch (e) { | |
console.log("Get badges failed: " + i); | |
console.warn(e); | |
i++; | |
} finally { | |
await delay(1500); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unlock Steam Summer Sale 2022 Clorthax's Quest Script
F12
CTRL
+SHIFT
+I
CMD
+SHIFT
+I