Bungie.net Community
This topic has moved here: Subject: Let's spend some quality time together (Mail Sack).
  • Subject: Let's spend some quality time together (Mail Sack).
Subject: Let's spend some quality time together (Mail Sack).

Posted by: Enormous Corgi
Posted by: Unanimate Objec
There's no way Nate Hawbaker's favorite hero is Alan Stuart


ALAN IS A BEAUTIFUL MAN!


Posted by: Locker537
What were the final steps from the point where you have the 91 sevens and zeroes?



Somehow, the winner...I don't even know. There was a soffish, then some programming, then -balm.- happened.

  • 09.08.2012 10:50 AM PDT
  • gamertag: [none]
  • user homepage:

the original hex has 91 7s and 0s. Treat the 7s as 1s and the 0s as 0s then break it up into chunks of 7 and prepend a 0 since this is low order ascii then convert to ascii and bam.

  • 09.08.2012 10:50 AM PDT

Anyone noticing a pattern? Last time the answer was Ling Ling, this week it's Soffish. Any bets on next week?

  • 09.08.2012 10:51 AM PDT
  • gamertag: [none]
  • user homepage:


Posted by: Locker537
What were the final steps from the point where you have the 91 sevens and zeroes?


The clue was to remember that Bungie programs in sevens and zeroes. In essence, the seven is our "one". So if you convert the sevens in the 91-bit string to one, you have a binary string.

Grouping them into groups of 7 and reading it as ASCII yields:

bit.ly/rdyLkP

Which links to our page on Soffish.

[Edited on 09.08.2012 10:53 AM PDT]

  • 09.08.2012 10:52 AM PDT

Posted by: Enormous Corgi
Posted by: Unanimate Objec
There's no way Nate Hawbaker's favorite hero is Alan Stuart


ALAN IS A BEAUTIFUL MAN!


Posted by: antony X1000
Anyone noticing a pattern? Last time the answer was Ling Ling, this week it's Soffish. Any bets on next week?



Stosh, toast or P'hor.

  • 09.08.2012 10:53 AM PDT

The name's Ian, Game Designer at Whisper Game Studios, very off-and-on Bungie.net visitor and avid Bungie fan overall. Message me if you wish.


Posted by: antony X1000
Anyone noticing a pattern? Last time the answer was Ling Ling, this week it's Soffish. Any bets on next week?


keeping in mind for next time.

  • 09.08.2012 10:54 AM PDT

"Dad, your drunk again. Stop posting on the forum, or i'll ban you, and it'll ruin Christmas." -Deej

Hey MisssingLink, is there any consolation prize for being the first to get the first part correct? And what is the prize for the winner?

  • 09.08.2012 10:56 AM PDT
  • gamertag: [none]
  • user homepage:

I don't hand out the prizes. I'm just the tortur--er, challenge maker.

:)

  • 09.08.2012 10:57 AM PDT

Posted by: Enormous Corgi
Posted by: Unanimate Objec
There's no way Nate Hawbaker's favorite hero is Alan Stuart


ALAN IS A BEAUTIFUL MAN!


Posted by: DesertStormer27
Hey MisssingLink, is there any consolation prize for being the first to get the first part correct? And what is the prize for the winner?



DeeJ did say that the next challenge could have multiple winners, and I'm guessing some swag.

  • 09.08.2012 10:57 AM PDT
  • gamertag: [none]
  • user homepage:


Posted by: DesertStormer27
Hey MisssingLink, is there any consolation prize for being the first to get the first part correct? And what is the prize for the winner?


You weren't the first to get the first part right :P there were other people before you. I got to that part like an hour before you posted on the forum and another posted part of it proving he got there a little while before you :P and I have no idea if there is or isn't a prize but it was fun :D

  • 09.08.2012 10:58 AM PDT

The name's Ian, Game Designer at Whisper Game Studios, very off-and-on Bungie.net visitor and avid Bungie fan overall. Message me if you wish.

My question is, where were we given the pointer to take the 0's and 7's out of the hex and translate them to binary from the 91-bit code?

I know Blue got the idea and pulled them out using C++ but other than that, I can't seem to find a cue elsewhere to show that we needed to do that.

[Edited on 09.08.2012 11:01 AM PDT]

  • 09.08.2012 11:00 AM PDT
  •  | 
  • Veteran Legendary Member
  • gamertag: jyrine
  • user homepage:

I was the first Spartan. And I will be the last. Mythic on 9/1/2012 never forget
PAX 08, Third Team against Luke and Shishka, AR dual to
the Death, won by one point... Assembly hasn't changed.

urk: "This is a bad idea."
DeeJ: "Hold still..."

.....DeeJ.....You have finally done it....You've given us a challenge which is taking time to solve....

Never do this again.

  • 09.08.2012 11:00 AM PDT
  • gamertag: [none]
  • user homepage:


Posted by: Your MOM is MC
My question is, where were we given the pointer to take the 0's and 7's out of the hex and translate them to binary from the 91-bit code?


we weren't about the hex but he said 91 7s and 0s total.

  • 09.08.2012 11:01 AM PDT

This was a lot of fun to watch silently unfold. Nicely done blue chill, I wish I had the computer prowess that you had. If I did, we probably would have gone down to the wire. I had a lot of the early staged figured out but I was literally doing this by hand with copy and pasting and making spaces between the 1's and the 0's.
Posted by: bluechill9

Posted by: DesertStormer27
Hey MisssingLink, is there any consolation prize for being the first to get the first part correct? And what is the prize for the winner?


You weren't the first to get the first part right :P there were other people before you. I got to that part like an hour before you posted on the forum and another posted part of it proving he got there a little while before you :P and I have no idea if there is or isn't a prize but it was fun :D
Yeah, I had mentioned that I saw the "MOST ENGINEERS WHO PRACTICE COMPUTER" part a few posts above him but I gave up because my body was physically strained. On the bright side, I feel a lot better now.

This Soffish do not eat.

  • 09.08.2012 11:02 AM PDT
  •  | 
  • Exalted Mythic Member
  • gamertag: Beorn
  • user homepage:

Posted by: bluechill9
the original hex has 91 7s and 0s. Treat the 7s as 1s and the 0s as 0s then break it up into chunks of 7 and prepend a 0 since this is low order ascii then convert to ascii and bam.

Wow, awesome job, bluechill9! I was wrestling with the hex and didn't think to go back to binary by replacing the 7s with 1s and zero-padding the chunk of 7 bits. He made us do that for the original conversion, so in hindsight that makes complete sense.

That was a fun challenge! Thanks, TheMisssingLink!

[Edited on 09.08.2012 11:06 AM PDT]

  • 09.08.2012 11:03 AM PDT

Posted by: bluechill9

Posted by: Your MOM is MC
My question is, where were we given the pointer to take the 0's and 7's out of the hex and translate them to binary from the 91-bit code?


we weren't about the hex but he said 91 7s and 0s total.
Yes, and 7's and 0's in terms of Bungie is binary. So change the 7s to 1s and group them into 13 chunks of 7 (91/7 = 13) and there you have it. Link to the Soffish page. Well done, once again blue. Much respect, honorary Mythic for the day. ;)

  • 09.08.2012 11:04 AM PDT

The name's Ian, Game Designer at Whisper Game Studios, very off-and-on Bungie.net visitor and avid Bungie fan overall. Message me if you wish.


Posted by: bluechill9

Posted by: Your MOM is MC
My question is, where were we given the pointer to take the 0's and 7's out of the hex and translate them to binary from the 91-bit code?


we weren't about the hex but he said 91 7s and 0s total.


Well I translated the paragraph to hex instead of hexadecimal. From the hexadecimal, you wrote the code to pull out the 7's and 0's and to put them in order and translate 7's to 1's. How did you know to do that from this:

4d 4f 53 54 45 4e 47 49 4e 45 45 52 53 57 48 4f 50 52 41 43 54 49 43 45 43 4f 4
d 50 55 54 45 52 53 43 49 45 4e 43 45 50 52 41 47 4d 41 54 49 43 41 4c 4c 59 52
45 50 45 41 54 45 44 4c 59 47 4f 57 49 54 48 54 48 45 43 4f 4d 4d 4f 4e 50 52 41
43 54 49 43 45 41 4e 44 4c 45 56 45 52 41 47 45 4f 4e 45 53 41 4e 44 5a 45 52 4
f 45 53 54 4f 50 45 4e 54 48 45 49 52 50 52 4f 47 52 41 4d 53 2e 47 45 4e 45 52
41 54 49 4e 47 43 4f 44 45 4c 49 4b 45 54 48 49 53 47 45 4e 45 52 41 4c 4c 59 49
53 41 50 52 45 54 54 59 57 45 4c 4c 2d 46 4f 55 4e 44 45 44 50 41 54 54 45 52 4
e 54 4f 45 4d 50 4c 4f 59 2e 4f 4e 54 48 45 46 4c 49 50 53 49 44 45 2c 42 55 4e
47 49 45 49 53 4e 4f 54 59 4f 55 52 54 59 50 49 43 41 4c 45 4e 47 49 4e 45 45 52
49 4e 47 47 52 4f 55 50 2e 57 45 57 52 49 54 45 50 52 4f 47 52 41 4d 53 57 49 5
4 48 4f 55 54 4f 4e 45 53 2e 4f 55 52 50 45 4f 50 4c 45 44 4f 4e 4f 54 4c 49 4b
45 54 48 45 4e 55 4d 42 45 52 2e 57 48 59 57 45 4c 4c 2c 54 48 45 52 45 41 52 45
47 52 45 41 54 45 52 2c 47 52 41 4e 44 45 52 4e 55 4d 42 45 52 53 54 4f 41 50 5
0 4c 59 46 4f 52 4f 55 52 57 49 4c 59 43 52 41 46 54 2e 4d 41 59 48 41 50 59 4f
55 44 49 53 41 47 52 45 45 2c 50 45 52 43 48 41 4e 43 45 59 4f 55 41 47 52 45 45
2e 57 48 41 54 4d 41 54 54 45 52 53 49 53 54 48 41 54 53 45 56 45 4e 49 53 4d 4
f 52 45 41 57 45 53 4f 4d 45 54 48 41 4e 4f 4e 45 57 49 4c 4c 45 56 45 52 49 4d
41 47 49 4e 45 49 54 53 45 4c 46 54 4f 42 45 2e 41 4e 44 53 4f 2c 57 45 43 4f 44
45 57 49 54 48 41 4d 50 4c 45 53 45 56 45 4e 53 2c 4e 4f 54 4f 4e 45 53 2e 46 4
1 43 54 3a 50 52 4f 47 52 41 4d 53 50 41 43 4b 45 44 57 49 54 48 53 45 56 45 4e
53 41 52 45 4d 4f 52 45 41 57 45 53 4f 4d 45 54 48 41 4e 50 49 54 48 59 50 52 4f
47 52 41 4d 53 54 48 41 54 41 50 50 4c 59 4f 4e 45 53 2e 5a 45 52 4f 45 53 57 4
5 4c 4c 2c 57 45 53 54 49 4c 4c 54 48 49 4e 4b 54 48 45 59 27 52 45 47 4f 4f 44
2e 50 52 45 54 54 59 50 41 4c 41 54 41 42 4c 45 2e 57 45 47 52 41 50 50 4c 45 57
49 54 48 5a 45 52 4f 45 53 41 4c 4c 54 48 45 54 49 4d 45 2e 45 56 45 4e 4e 4f 5
7 2e 59 45 53 2e 48 45 52 45 2e 43 41 4e 59 4f 55 50 45 4f 50 4c 45 53 45 45 54
48 45 4d 3f 52 49 47 48 54 48 45 52 45 49 4e 54 48 49 53 4c 4f 4e 47 54 45 58 54
50 41 55 53 45 54 4f 54 41 4b 45 41 4c 4f 4e 47 4c 4f 4f 4b 2e 50 45 52 43 48 4
1 4e 43 45 54 48 49 53 48 41 53 42 45 45 4e 41 57 49 4c 59 47 41 4d 42 49 54 41
4c 4c 54 48 49 53 54 49 4d 45 3f 57 45 4c 4c 2c 50 4f 4c 49 53 48 54 48 4f 53 45
54 48 49 4e 4b 49 4e 47 43 41 50 53 2e 59 4f 55 48 41 56 45 41 4d 50 4c 45 4e 5
5 4d 42 45 52 53 54 4f 46 49 4e 52 44 2e 48 41 56 45 53 4f 4d 45 46 55 4e 21 53
54 41 59 48 41 50 50 59 2e

  • 09.08.2012 11:06 AM PDT

Hahaha, BurritoSenor guessed soffish at the beginning of the thread, like page 2 or so.

As for the first part, I'd like to take the mantle of glory for that one on page 6. (although Lobster may have had it before me, haha)

Edit: This was a ton of fun, hope that there are more in future mailsacks. Thanks David!

[Edited on 09.08.2012 11:07 AM PDT]

  • 09.08.2012 11:06 AM PDT
  • gamertag: [none]
  • user homepage:


Posted by: Your MOM is MC

Posted by: bluechill9

Posted by: Your MOM is MC
My question is, where were we given the pointer to take the 0's and 7's out of the hex and translate them to binary from the 91-bit code?


we weren't about the hex but he said 91 7s and 0s total.


Well I translated the paragraph to hex instead of hexadecimal. From the hexadecimal, you wrote the code to pull out the 7's and 0's and to put them in order and translate 7's to 1's. How did you know to do that from this:

4d 4f 53 54 45 4e 47 49 4e 45 45 52 53 57 48 4f 50 52 41 43 54 49 43 45 43 4f 4
d 50 55 54 45 52 53 43 49 45 4e 43 45 50 52 41 47 4d 41 54 49 43 41 4c 4c 59 52
45 50 45 41 54 45 44 4c 59 47 4f 57 49 54 48 54 48 45 43 4f 4d 4d 4f 4e 50 52 41
43 54 49 43 45 41 4e 44 4c 45 56 45 52 41 47 45 4f 4e 45 53 41 4e 44 5a 45 52 4
f 45 53 54 4f 50 45 4e 54 48 45 49 52 50 52 4f 47 52 41 4d 53 2e 47 45 4e 45 52
41 54 49 4e 47 43 4f 44 45 4c 49 4b 45 54 48 49 53 47 45 4e 45 52 41 4c 4c 59 49
53 41 50 52 45 54 54 59 57 45 4c 4c 2d 46 4f 55 4e 44 45 44 50 41 54 54 45 52 4
e 54 4f 45 4d 50 4c 4f 59 2e 4f 4e 54 48 45 46 4c 49 50 53 49 44 45 2c 42 55 4e
47 49 45 49 53 4e 4f 54 59 4f 55 52 54 59 50 49 43 41 4c 45 4e 47 49 4e 45 45 52
49 4e 47 47 52 4f 55 50 2e 57 45 57 52 49 54 45 50 52 4f 47 52 41 4d 53 57 49 5
4 48 4f 55 54 4f 4e 45 53 2e 4f 55 52 50 45 4f 50 4c 45 44 4f 4e 4f 54 4c 49 4b
45 54 48 45 4e 55 4d 42 45 52 2e 57 48 59 57 45 4c 4c 2c 54 48 45 52 45 41 52 45
47 52 45 41 54 45 52 2c 47 52 41 4e 44 45 52 4e 55 4d 42 45 52 53 54 4f 41 50 5
0 4c 59 46 4f 52 4f 55 52 57 49 4c 59 43 52 41 46 54 2e 4d 41 59 48 41 50 59 4f
55 44 49 53 41 47 52 45 45 2c 50 45 52 43 48 41 4e 43 45 59 4f 55 41 47 52 45 45
2e 57 48 41 54 4d 41 54 54 45 52 53 49 53 54 48 41 54 53 45 56 45 4e 49 53 4d 4
f 52 45 41 57 45 53 4f 4d 45 54 48 41 4e 4f 4e 45 57 49 4c 4c 45 56 45 52 49 4d
41 47 49 4e 45 49 54 53 45 4c 46 54 4f 42 45 2e 41 4e 44 53 4f 2c 57 45 43 4f 44
45 57 49 54 48 41 4d 50 4c 45 53 45 56 45 4e 53 2c 4e 4f 54 4f 4e 45 53 2e 46 4
1 43 54 3a 50 52 4f 47 52 41 4d 53 50 41 43 4b 45 44 57 49 54 48 53 45 56 45 4e
53 41 52 45 4d 4f 52 45 41 57 45 53 4f 4d 45 54 48 41 4e 50 49 54 48 59 50 52 4f
47 52 41 4d 53 54 48 41 54 41 50 50 4c 59 4f 4e 45 53 2e 5a 45 52 4f 45 53 57 4
5 4c 4c 2c 57 45 53 54 49 4c 4c 54 48 49 4e 4b 54 48 45 59 27 52 45 47 4f 4f 44
2e 50 52 45 54 54 59 50 41 4c 41 54 41 42 4c 45 2e 57 45 47 52 41 50 50 4c 45 57
49 54 48 5a 45 52 4f 45 53 41 4c 4c 54 48 45 54 49 4d 45 2e 45 56 45 4e 4e 4f 5
7 2e 59 45 53 2e 48 45 52 45 2e 43 41 4e 59 4f 55 50 45 4f 50 4c 45 53 45 45 54
48 45 4d 3f 52 49 47 48 54 48 45 52 45 49 4e 54 48 49 53 4c 4f 4e 47 54 45 58 54
50 41 55 53 45 54 4f 54 41 4b 45 41 4c 4f 4e 47 4c 4f 4f 4b 2e 50 45 52 43 48 4
1 4e 43 45 54 48 49 53 48 41 53 42 45 45 4e 41 57 49 4c 59 47 41 4d 42 49 54 41
4c 4c 54 48 49 53 54 49 4d 45 3f 57 45 4c 4c 2c 50 4f 4c 49 53 48 54 48 4f 53 45
54 48 49 4e 4b 49 4e 47 43 41 50 53 2e 59 4f 55 48 41 56 45 41 4d 50 4c 45 4e 5
5 4d 42 45 52 53 54 4f 46 49 4e 52 44 2e 48 41 56 45 53 4f 4d 45 46 55 4e 21 53
54 41 59 48 41 50 50 59 2e


It was a guess :P I literally tried a hundred different things and well my brain makes connections between the weirdest of things, probably why I love computer science and AI.

  • 09.08.2012 11:07 AM PDT

Owning Noobs Since 05

"I want to die peacefully in my sleep like my grandfather. Not screaming in terror like his passengers."

Jim Harkins

Overall this was fun, even though my brain doesn't think so. At least it helped with the darkness so :]
Posted by: TheMisssingLink
Thanks for the explanation, but that explanation is not going to change the fact that I'm going to give you dirty looks from now on when I see you in the forums.
*Gives dirty look*
Posted by: bluechill9

You can do it!

  • 09.08.2012 11:07 AM PDT

The name's Ian, Game Designer at Whisper Game Studios, very off-and-on Bungie.net visitor and avid Bungie fan overall. Message me if you wish.


Posted by: bluechill9

Posted by: Your MOM is MC

Posted by: bluechill9

Posted by: Your MOM is MC
My question is, where were we given the pointer to take the 0's and 7's out of the hex and translate them to binary from the 91-bit code?


we weren't about the hex but he said 91 7s and 0s total.


Well I translated the paragraph to hex instead of hexadecimal. From the hexadecimal, you wrote the code to pull out the 7's and 0's and to put them in order and translate 7's to 1's. How did you know to do that from this:

4d 4f 53 54 45 4e 47 49 4e 45 45 52 53 57 48 4f 50 52 41 43 54 49 43 45 43 4f 4
d 50 55 54 45 52 53 43 49 45 4e 43 45 50 52 41 47 4d 41 54 49 43 41 4c 4c 59 52
45 50 45 41 54 45 44 4c 59 47 4f 57 49 54 48 54 48 45 43 4f 4d 4d 4f 4e 50 52 41
43 54 49 43 45 41 4e 44 4c 45 56 45 52 41 47 45 4f 4e 45 53 41 4e 44 5a 45 52 4
f 45 53 54 4f 50 45 4e 54 48 45 49 52 50 52 4f 47 52 41 4d 53 2e 47 45 4e 45 52
41 54 49 4e 47 43 4f 44 45 4c 49 4b 45 54 48 49 53 47 45 4e 45 52 41 4c 4c 59 49
53 41 50 52 45 54 54 59 57 45 4c 4c 2d 46 4f 55 4e 44 45 44 50 41 54 54 45 52 4
e 54 4f 45 4d 50 4c 4f 59 2e 4f 4e 54 48 45 46 4c 49 50 53 49 44 45 2c 42 55 4e
47 49 45 49 53 4e 4f 54 59 4f 55 52 54 59 50 49 43 41 4c 45 4e 47 49 4e 45 45 52
49 4e 47 47 52 4f 55 50 2e 57 45 57 52 49 54 45 50 52 4f 47 52 41 4d 53 57 49 5
4 48 4f 55 54 4f 4e 45 53 2e 4f 55 52 50 45 4f 50 4c 45 44 4f 4e 4f 54 4c 49 4b
45 54 48 45 4e 55 4d 42 45 52 2e 57 48 59 57 45 4c 4c 2c 54 48 45 52 45 41 52 45
47 52 45 41 54 45 52 2c 47 52 41 4e 44 45 52 4e 55 4d 42 45 52 53 54 4f 41 50 5
0 4c 59 46 4f 52 4f 55 52 57 49 4c 59 43 52 41 46 54 2e 4d 41 59 48 41 50 59 4f
55 44 49 53 41 47 52 45 45 2c 50 45 52 43 48 41 4e 43 45 59 4f 55 41 47 52 45 45
2e 57 48 41 54 4d 41 54 54 45 52 53 49 53 54 48 41 54 53 45 56 45 4e 49 53 4d 4
f 52 45 41 57 45 53 4f 4d 45 54 48 41 4e 4f 4e 45 57 49 4c 4c 45 56 45 52 49 4d
41 47 49 4e 45 49 54 53 45 4c 46 54 4f 42 45 2e 41 4e 44 53 4f 2c 57 45 43 4f 44
45 57 49 54 48 41 4d 50 4c 45 53 45 56 45 4e 53 2c 4e 4f 54 4f 4e 45 53 2e 46 4
1 43 54 3a 50 52 4f 47 52 41 4d 53 50 41 43 4b 45 44 57 49 54 48 53 45 56 45 4e
53 41 52 45 4d 4f 52 45 41 57 45 53 4f 4d 45 54 48 41 4e 50 49 54 48 59 50 52 4f
47 52 41 4d 53 54 48 41 54 41 50 50 4c 59 4f 4e 45 53 2e 5a 45 52 4f 45 53 57 4
5 4c 4c 2c 57 45 53 54 49 4c 4c 54 48 49 4e 4b 54 48 45 59 27 52 45 47 4f 4f 44
2e 50 52 45 54 54 59 50 41 4c 41 54 41 42 4c 45 2e 57 45 47 52 41 50 50 4c 45 57
49 54 48 5a 45 52 4f 45 53 41 4c 4c 54 48 45 54 49 4d 45 2e 45 56 45 4e 4e 4f 5
7 2e 59 45 53 2e 48 45 52 45 2e 43 41 4e 59 4f 55 50 45 4f 50 4c 45 53 45 45 54
48 45 4d 3f 52 49 47 48 54 48 45 52 45 49 4e 54 48 49 53 4c 4f 4e 47 54 45 58 54
50 41 55 53 45 54 4f 54 41 4b 45 41 4c 4f 4e 47 4c 4f 4f 4b 2e 50 45 52 43 48 4
1 4e 43 45 54 48 49 53 48 41 53 42 45 45 4e 41 57 49 4c 59 47 41 4d 42 49 54 41
4c 4c 54 48 49 53 54 49 4d 45 3f 57 45 4c 4c 2c 50 4f 4c 49 53 48 54 48 4f 53 45
54 48 49 4e 4b 49 4e 47 43 41 50 53 2e 59 4f 55 48 41 56 45 41 4d 50 4c 45 4e 5
5 4d 42 45 52 53 54 4f 46 49 4e 52 44 2e 48 41 56 45 53 4f 4d 45 46 55 4e 21 53
54 41 59 48 41 50 50 59 2e


It was a guess :P I literally tried a hundred different things and well my brain makes connections between the weirdest of things, probably why I love computer science and AI.


Which is why all of us in the skype chat meant to solve this are kicking ourselves for not thinking about doing that lol.

Nonetheless, congrats on your awesome find sire :)

  • 09.08.2012 11:10 AM PDT

Message Me Here
Don't be afraid, I don't bite.

Check My Groups Here
Relax, they aren't all pony related.

...which can't really be said about my Deviant Art Page however.

Bwahahaha! I even thought about blurting that out as the answer for the hell of it but knew I wouldn't be able to give an explanation for how I got there. I understand the very first part of it all but how you all got the last part, even reading all the explanations, is well beyond me. Congratulations! xD

*Applauds This Challenge's Creator/s*

[Edited on 09.08.2012 11:13 AM PDT]

  • 09.08.2012 11:11 AM PDT
  • gamertag: [none]
  • user homepage:


Posted by: Verachi
Thanks for the explanation, but that explanation is not going to change the fact that I'm going to give you dirty looks from now on when I see you in the forums.
*Gives dirty look*


Please, go ahead. If you didn't, I would suspect that you were trying to ply answers out of me. :) Besides, it is highly likely that I will be back here yet again with another nefarious puzzle for you.

[Edited on 09.08.2012 11:13 AM PDT]

  • 09.08.2012 11:13 AM PDT

The name's Ian, Game Designer at Whisper Game Studios, very off-and-on Bungie.net visitor and avid Bungie fan overall. Message me if you wish.


Posted by: TheMisssingLink

Posted by: Verachi
Thanks for the explanation, but that explanation is not going to change the fact that I'm going to give you dirty looks from now on when I see you in the forums.
*Gives dirty look*


Please, go ahead. If you didn't, I would suspect that you were trying to ply answers out of me. :) Besides, it is highly likely that I will be back here yet again with another nefarious puzzle for you.


Please do! And take one of the graphics engineers with you. I want next weeks puzzle to involve floats. :)

  • 09.08.2012 11:15 AM PDT

Posted by: MetalCanine
Hahaha, BurritoSenor guessed soffish at the beginning of the thread, like page 2 or so.
You're right. Top of page 3, Burrito guessed correctly and won. I shall PM him and let him know.

  • 09.08.2012 11:18 AM PDT