JavaScript is required to use Bungie.net

Destiny

Discuss all things Destiny.
Edited by BNGHelp1: 10/12/2014 12:14:11 AM
17

Script to enter all Destiny codes at once

If you want to redeem all 25 codes available for destiny without having to enter all the codes one by one, you can do so on Google Chrome by following the directions below. Head over to http://www.bungie.net/en/User/coderedemption and sign into your desired account. Press CTRL + Shift + J, doing so should bring up a box that presents a bit of coding and whatnot. Paste the following code in its entirety into the area below all of the text: 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(); Press Enter and if done correctly, you should see all of the codes being redeemed simultaneously. For anyone using a Mac, go to the toolbar, click on View, then Developer, and finally JavaScript Console. Then just enter the script! I just did it and it worked like a charm! Enjoy
English
#Destiny

Posting in language:

 

Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

  • It would be very nice if this was updated

    Posting in language:

     

    Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

  • Edited by DeftestHawk: 8/12/2017 7:37:32 PM
    The code posted above is out dated there are 5 codes missing from it, I updated this awesome code so you can get them all: 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", "X4C-FGX-MX3", "A7L-FYC-44X", "X9F-GMA-H6D", "N3L-XN6-PXF", "3VF-LGC-RLX"]; 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(); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ If you've already used his code then use this one instead as this will give you the ones missing without having to wait for it to go through all the ones you've already got: var codes=["X4C-FGX-MX3", "A7L-FYC-44X", "X9F-GMA-H6D", "N3L-XN6-PXF", "3VF-LGC-RLX"]; 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();

    Posting in language:

     

    Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

  • Edited by Shadowthrone: 8/4/2016 12:40:07 PM
    Deleted

    Posting in language:

     

    Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

  • very nice...thank you

    Posting in language:

     

    Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

  • You can use IE as well. Just navigate to the page as directed and hit F12 which brings up the developer tools. Click on the console Icon (second icon in the list down the left side). Copy and paste the code into the input box at the bottom of the window. Press the runscript button located at the lower right corner of the input box. It takes it a minute or two to run, you will see output in the console box. You can verify it worked by going into your profile on bungie.net and go to codes. You should see a long list redeemed on the date you ran the script. Here's the updated script with 3 more codes. 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", "X9F-GMA-H6D", "A7L-FYC-44X", "N3L-XN6-PXF"]; 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();

    Posting in language:

     

    Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

    4 Replies
    • Hi ,thanks for the tip but I received a warning in Firefox when trying to past the text in the scratchpad, is there a way to disallow pasting in the scratchpad again after it has been allowed? Jut a bit concerned about the security warning.

      Posting in language:

       

      Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

      2 Replies
      • [quote]If you want to redeem all 25 codes available for destiny without having to enter all the codes one by one, you can do so on Google Chrome by following the directions below. Head over to http://www.bungie.net/en/User/coderedemption and sign into your desired account. Press CTRL + Shift + J, doing so should bring up a box that presents a bit of coding and whatnot. Paste the following code in its entirety into the area below all of the text: 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(); Press Enter and if done correctly, you should see all of the codes being redeemed simultaneously. For anyone using a Mac, go to the toolbar, click on View, then Developer, and finally JavaScript Console. Then just enter the script! I just did it and it worked like a charm! Enjoy[/quote]

        Posting in language:

         

        Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

      • Bump

        Posting in language:

         

        Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

      • anyone have any ideas to do this on a mac/safari?

        Posting in language:

         

        Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

        1 Reply
        • You can do it in firefox as well. Tools -> Web Developer -> Scratchpad. Same as explained above. Paste it, edit it if you want and then press Run.

          Posting in language:

           

          Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

          2 Replies
          • Great work, a huge time saver !!!

            Posting in language:

             

            Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

            1 Reply
            • I just opened up another tab to the code site then copied pasted and redeemed. Took less than 5 minutes, no big deal.

              Posting in language:

               

              Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

            • Nice job man, unfortunately a bit late for me, but will save others lots of time.

              Posting in language:

               

              Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

            • thank you very much, too bad i had to install chrome to use it. but it was still much faster then doing the codes by hand

              Posting in language:

               

              Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

              1 Reply
              • Bump. Good job, already have the codes but very helpful

                Posting in language:

                 

                Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

              • Thanks for this! Wish I would of saw this before I entered all of the codes in manually. :P

                Posting in language:

                 

                Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

              • That seems helpful.

                Posting in language:

                 

                Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

                1 Reply
                You are not allowed to view this content.
                ;
                preload icon
                preload icon
                preload icon