use this to do them all at once
skoging 12 points 1 day ago*x2
I posted this in another thread but that thread seems to have been deleted. I'll post it here too as people seemed to find it useful.
This script will enter all of these codes automatically, even if you have entered some of them previously:
Open http://www.bungie.net/en/User/coderedemption in Chrome and login if prompted.
Press CTRL+SHIFT+J to open the console.
Copy the code below, and paste it into the console. When you press ENTER the script will start.
var codes=["YKA-RJG-MH9", "3DA-P4X-F6A", "MVD-4N3-NKH", "TCN-HCD-TGY", "HDX-ALM-V4K", "473-MXR-3X9",
"JMR-LFN-4A3", "HC3-H44-DKC", "69P-KRM-JJA", "69P-VCH-337", "69R-CKD-X7L", "69R-DDD-FCP",
"69R-F99-AXG", "69R-VL7-J6A", "69X-DJN-74V", "6A7-7NP-3X7", "6A9-DTG-YGN", "7F9-767-F74",
"FJ9-LAM-67F", "JD7-4CM-HJG", "JDT-NLC-JKM", "JNX-DMH-XLA", "7CP-94V-LFP", "7MM-VPD-MHP",
"RXC-9XJ-4MH"];
var codeField = document.getElementById("text_code");
var i = 0;
var delay = 2500;
function enterCodeLoop () {
setTimeout(function () {
codeField.value = codes[i];
$(".btn_submitCode")[0].click();
i++;
if (i < codes.length) {
enterCodeLoop();
}
}, delay)
}
enterCodeLoop();
Your role as a moderator enables you immediately ban this user from messaging (bypassing the report queue) if you select a punishment.
7 Day Ban
7 Day Ban
30 Day Ban
Permanent Ban
This site uses cookies to provide you with the best possible user experience. By clicking 'Accept', you agree to the policies documented at Cookie Policy and Privacy Policy.
Accept
This site uses cookies to provide you with the best possible user experience. By continuing to use this site, you agree to the policies documented at Cookie Policy and Privacy Policy.
close
Our policies have recently changed. By clicking 'Accept', you agree to the updated policies documented at Cookie Policy and Privacy Policy.
Accept
Our policies have recently changed. By continuing to use this site, you agree to the updated policies documented at Cookie Policy and Privacy Policy.