From fafc76ac52771b86f20d4b16d28116ffb297c54f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20L=C3=B8vbr=C3=B8tte=20Olsen?= Date: Wed, 2 Dec 2015 20:28:02 +0100 Subject: [PATCH] Create Process.js --- CS-GO/Skins/Process.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CS-GO/Skins/Process.js diff --git a/CS-GO/Skins/Process.js b/CS-GO/Skins/Process.js new file mode 100644 index 0000000..12d8864 --- /dev/null +++ b/CS-GO/Skins/Process.js @@ -0,0 +1,9 @@ +// Runs on CS:GO Zone, you'll have to run it a couple of times to let the inspector catch up, but it still speeds up the process drastically + +console.log("New Run:"); +var links = prompt("Please enter the links that are going to be processed").split(","); +for (var i = 0; i < links.length; i++) { + jQuery("#check-page > div.inspect-body.check-body > div.check-input-holder > div:nth-child(1) > input").val(links[i]); + jQuery(".check-load-button").trigger('click'); + console.log(i+1 + ". " + jQuery(".wear.value").text()); +}