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
Also, if you are looking to easily pick out the index of the achievement location you are missing, try this python one-liner which gives you a representation of what locations you have found in the form [*index of achievement from 1 to 45, 1/0 true or false this location has been found].
>>> [[i+1, bin(0x00001FFFFFFFFFFD)[2::][44-i]] for i in range(44, -1, -1)]
[[45, '1'], [44, '1'], [43, '1'], [42, '1'], [41, '1'], [40, '1'], [39, '1'], [38, '1'], [37, '1'], [36, '1'], [35, '1'], [34, '1'], [33, '1'], [32, '1'], [31, '1'], [30, '1'], [29, '1'], [28, '1'], [27, '1'], [26, '1'], [25, '1'], [24, '1'], [23, '1'], [22, '1'], [21, '1'], [20, '1'], [19, '1'], [18, '1'], [17, '1'], [16, '1'], [15, '1'], [14, '1'], [13, '1'], [12, '1'], [11, '1'], [10, '1'], [9, '1'], [8, '1'], [7, '1'], [6, '1'], [5, '1'], [4, '1'], [3, '1'], [2, '0'], [1, '1']]
>>>
Note that the achievements are stored starting with the LSB so I must reverse the indexing. Just replace the hex value with yours and it will give you the relevant info.
Too bad I really dislike Python :P I had meant to do a simple Flash thing just so people could paste their code into a webpage and get the answer back easily, I just never got around to it (and it seems like it'd be rather redundant with Flash starting to be disabled in various browsers). And I know barely anything about HTML5.
EDIT: gotít it was 8
It's also 17, not 28.
I don't know if the conversion is correct, I would appreciate it if you could answer me