Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Link [gist.github.com]
The script is triggerd by Shift+A. Be sure to close the script when you done otherwise writing capital "A" is going to be annoying.
"6121 3121 412" completes the sequence.
Had it opened on the phone while I hammered it in via numpad.
Really not a fan of having cheated for this achievement, but I want that 100%, and call me a brainlet, but this achievement standing in the way of that is like signing up for a job as a plumber, but being asked to get quick at sudoku before receiving pay.
Also written as ((number 'right shift by 1') 'exclusive or with' number)
Example: 9 in binary is 1001. 9 >> 1 = 0100, with the remaining 1 dropped.
0100 Xor 1001 = 1101. 1101 is the Grey Code form of 9.
Here's the pattern. In grey code, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, is represented in binary as
0000, 0001, 0011, 0010, 0110, 0111, 0101, 0100, 1100, 1101, 1111.
The pattern is the bit that needs to be flipped to reach the next number.
At 0->1, flip 1 = 0001
At 1->2, flip 2 = 0011
At 2->3, flip 1 = 0010
At 3->4, flip 3 = 0110
At 4->5, flip 1 = 0111
...
Continue for the rest of the pattern until you've counted to 170, and you flip the last 1 bit to result in the Grey Code number 11111111 binary = 256 in base 10.
Thank you very much Apocalipsus, with the macro I made it