-
-
Save freak3dot/5c5340f80d2fb57cb475 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/** | |
* ehime :: Jd Daniel | |
* | |
* Goto: http://www.bungie.net/en/User/coderedemption | |
* Paste/Run script in Firebug console | |
* ??? | |
* Profit! | |
*/ | |
var codes = [ | |
"YKA-RJG-MH9", //Destiny Collector's Card #01 - Class: Warlock | |
"3DA-P4X-F6A", //Destiny Collector's Card #02 - Class: Titan | |
"MVD-4N3-NKH", //Destiny Collector's Card #03 - Class: Hunter | |
"TCN-HCD-TGY", //Destiny Collector's Card #04 - Fallen: Riksis, Devil Archon | |
"HDX-ALM-V4K", //Destiny Collector's Card #05 - Destination: Cosmodrome | |
"473-MXR-3X9", //Destiny Collector's Card #06 - Enemy: Hive | |
"JMR-LFN-4A3", //Destiny Collector's Card #07 - Destination: The Ocean Of Storms, Moon | |
"HC3-H44-DKC", //Destiny Collector's Card #08 - Exotic: Gjallarhorn | |
"69P-KRM-JJA", //Destiny Collector's Card #09 - Destination: The Tower | |
"69P-VCH-337", //Destiny Collector's Card #10 - Exotic: The Last Word | |
"69R-CKD-X7L", //Destiny Collector's Card #11 - Hive: Ogre | |
"69R-DDD-FCP", //Destiny Collector's Card #12 - Destination: Valley of Kings, Mars | |
"69R-F99-AXG", //Destiny Collector's Card #13 - Enemy: The Fallen | |
"69R-VL7-J6A", //Destiny Collector's Card #14 - Exotic: Red Death | |
"69X-DJN-74V", //Destiny Collector's Card #15 - Enemy: Cabal | |
"6A7-7NP-3X7", //Destiny Collector's Card #16 - Destination: Shattered Coast, Venus | |
"6A9-DTG-YGN", //Destiny Collector's Card #17 - Vex: Minotaur | |
"7F9-767-F74", //Emblem: Sign of the Finite | |
"FJ9-LAM-67F", //Emblem: Binding Focus | |
"JD7-4CM-HJG", //Emblem: Illusion of Light | |
"JDT-NLC-JKM", //Emblem: Ab Aeterno | |
"JNX-DMH-XLA", //Emblem: Field of Light | |
"7CP-94V-LFP", //Emblem: Lone Focus, Jagged Edge | |
"7MM-VPD-MHP", //Shader: Double Banshee | |
"RXC-9XJ-4MH", //Shader: Oracle 99 | |
"X4C-FGX-MX3", //Emblem: Note of Conquest | |
"A7L-FYC-44X", //Emblem: Flames of Forgotten Truth | |
"3VF-LGC-RLX", //Emblem: Insula Thesauraria | |
"X9F-GMA-H6D", //Emblem: The Unimagined Plane | |
"N3L-XN6-PXF" //Emblem: The Reflective Proof | |
]; | |
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(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment