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
(this path is win7; it may be slightly different if you're on another OS)
If you delete it it will recreate the file after you play PA again. (alternatively, just rename the file abd you can later restore it if you want) Note that this will reset the table goals too. If you know how to hex edit you could just change the scores. It looks like all the tables are saved in here, so you would need to search for your initials and a known score to figure out which table is which. ToTAN starts at 0378 for example.
EDIT
Ah, I got it anyway. I managed to set all the scores of my favorite table to 2.800.000 which is almost the same as zero LOL. Nice! :)
For example, the 1st place score of ToTAN I mentioned is at 0x0378 in my file. It is possible it may vary depending on if you have other tables (I haven't got any extras yet; I already have a bunch of them on xbox)
0378: f0 72 e6 06 00 00 00 00
x86 systems store the bytes in reverse order (look up "Endianness" on wikipedia if you're interested in the details), so you have to swap the bytes around to get the score, like so:
06e6 72f0
type that into calc and convert to decimal (change to Programmer mode under the View menu) and you'll get the score:
115,766,000
you can reverse these steps if you want to change an existing score to something else.
I briefly experimented with changing the score to more than 4 bytes (4,294,967,295 is the max that can be represented) and got some strange results, so not sure what the proper format is for larger scores. I think elsewhere in the file it indicates which table goals you've completed.
Anyway, after reading your post I now know how to set a score to the exact number I want, which is even nicer. Also thanks for the heads up on the reverse order which explained why I couldn't find the numbers simply be searching for them!