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