安裝 Steam
登入
|
語言
簡體中文
日本語(日文)
한국어(韓文)
ไทย(泰文)
Български(保加利亞文)
Čeština(捷克文)
Dansk(丹麥文)
Deutsch(德文)
English(英文)
Español - España(西班牙文 - 西班牙)
Español - Latinoamérica(西班牙文 - 拉丁美洲)
Ελληνικά(希臘文)
Français(法文)
Italiano(義大利文)
Bahasa Indonesia(印尼語)
Magyar(匈牙利文)
Nederlands(荷蘭文)
Norsk(挪威文)
Polski(波蘭文)
Português(葡萄牙文 - 葡萄牙)
Português - Brasil(葡萄牙文 - 巴西)
Română(羅馬尼亞文)
Русский(俄文)
Suomi(芬蘭文)
Svenska(瑞典文)
Türkçe(土耳其文)
tiếng Việt(越南文)
Українська(烏克蘭文)
回報翻譯問題
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