安装 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