JavaScript is required to use Bungie.net

Destiny

Discuss all things Destiny.
Edited by SarcasticWheatThin: 9/29/2016 3:51:55 PM
50

Easy Binary Conversion for the Raid Exotic Quest

For those that don't understand the code during the Outbreak Prime quest it's binary. I personally learned to read it as each place is worth a certain amount. And you always start at the right. This way you don't have to worry about 2x. Some people might find that method easy. Others will not so this is an alternative. 0 | 0 | 0 | 0 8 | 4 | 2 | 1 If there is a "0" in your code do not add the value of that place. So using this chart above you can work out what your code means by adding the value corresponding to the place of your code. 0101 = 4+1 = 5 0100 = 4 0011 =2+1 = 3 0010 = 2 0001 = 1 0000 = 0 Everyone learns differently so if this still confuses you you might want to use a converter online. Hope this helps some of you Guardians that may not be math inclined and don't want to use a converter to help you out with this.
English
#Destiny #Endgame

Posting in language:

 

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

  • Thanks. You finally let me understand it.

    Posting in language:

     

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

  • [quote]For those that don't understand the code during the Outbreak Prime quest it's binary. I personally learned to read it as each place is worth a certain amount. And you always start at the right. This way you don't have to worry about 2x. Some people might find that method easy. Others will not so this is an alternative. 0 | 0 | 0 | 0 8 | 4 | 2 | 1 If there is a "0" in your code do not add the value of that place. So using this chart above you can work out what your code means by adding the value corresponding to the place of your code. 0101 = 4+1 = 5 0100 = 4 0011 =2+1 = 3 0010 = 2 0001 = 1 0000 = 0 Everyone learns differently so if this still confuses you you might want to use a converter online. Hope this helps some of you Guardians that may not be math inclined and don't want to use a converter to help you out with this.[/quote] [b][/b]

    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 so much!!

    Posting in language:

     

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

  • Wait I for forgot about the man! Man, what man! F the man! We've got 10 seconds left!! 555-0001

    Posting in language:

     

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

    3 Replies
    • This still confuses me😶

      Posting in language:

       

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

    • I need a hunter and a warlock for the last part of the siva engine puzzle

      Posting in language:

       

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

    • It's so funny how many people struggle with this. There are FIVE numbers to deal with for crying out loud! If it was 50 then fair enough but it's FIVE possible numbers what a piece of piss.

      Posting in language:

       

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

    • Bump for later, lfg is cancer ATM though...

      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
      • Or you could just use a Binary conversion... 0000=0 0001=1 0010=2 0011=3 0100=4 0101=5 And that's all you need (This is for the monitor part not the initial sequence you may find that in most youtubes/posts on b.net)

        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
        • Looking to do the raid again just for the monitors. Titan 369 need 5

          Posting in language:

           

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

        • This is awesome! This teached me in less than a minute how to translate the Binary Code in the Raid, and now I can instantly translate them without an extra sheet. Explained it to my friends yesterday with a picture and they learned it in under three minutes. 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

        • Need a titan and hunter for quest psn-realgangstarr

          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

        • Really I'm just waiting on a list of all the combinations that appear and the numbers to them

          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
          • Need a titan and warlock on step 8 please psn jrodri6uez

            Posting in language:

             

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

          • Need a warlock at first quest

            Posting in language:

             

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

          • I'm studying electrical engineering and when I saw this was part of the quest I was really excited to convert it on the spot with my team (whoever they might be)

            Posting in language:

             

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

          • Should named the post "binary for dummies 101". Thanks for sharing! Learned something new.

            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
            • Juat wrote down the values on a piece of paper and slowly recognizing the values without having to glance at my cheat sheet

              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
              • Binary to decimal: 2^n, start at n = 0. And if you want to go back: decimal to binary: (loop while remainder != 1) { n%2 n/2 } Java Code for those who refuse to do it by hand: public static Long binToDec(String bin) { long dec = 0L; long pow = 1L; for (int i = (bin.length() - 1); i >= 0; i--) { char c = bin.charAt(i); dec = dec + (Long.parseLong(c + "") * pow); pow = pow * 2; } return dec; }

                Posting in language:

                 

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

                23 Replies
                • That makes absolutely 0% sense

                  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
                  • So 0001 = nerf fusion rifles???

                    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
                    • Only Exo Warlocks (computer+intelligence) can decode that. Poor Titans.

                      Posting in language:

                       

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

                      6 Replies
                      • I really hope they don't dumb this quest down for casuals.

                        Posting in language:

                         

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

                        3 Replies
                        • Best explanation I've seen yet...take this like.

                          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'm with a team, and we've all turned on each monitor, but now we are at the boss and they are too weak to complete the fight. If I leave them, and find another group and start off from my check point, will I still have all the monitors activated and be able to get the quest??

                            Posting in language:

                             

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

                            11 Replies
                            You are not allowed to view this content.
                            ;
                            preload icon
                            preload icon
                            preload icon