- 2,171
I always puzzled with how GT4 store our credit. But yesterday I found out how to do that.
The money code in GT4 seems stored as 8 byte number. This number should be an integer. But it is not stored with little bit of processing. To get a very big credit, you only need the first 4 byte to get 4 billion credit.
Let see the armax code for that, PAL max cash:
YGT5-F9UG-VQU7A
N1H0-5X1J-PJDNY
9BFM-1V81-8N4J7
the raw code of that is:
20A31928 44B14400
20A3192C 44B14400
when we start the game at the first time we have 10000 credit, the code for 10000 credit is:
20A31928 6C6C754E
20A3192C 7A726F70
We only need to change the first four byte to get 4 billion credit, so we only need to change the first line. Here is how I found out how to get any credit we want:
10,000 credit = 6C6C754E
0 credit = 6C6C525E
It is unusual to have 6C6C525E value for 0 credit. So this number should be used to get any other number. Since we want a 4 billion credit then:
4 billion hex code = EE6B2800
if 0 credit is 6C6C525E then 4 billion credit is:
4 billion code = 4 billion hex code XOR 6C6C525E
4 billion code = EE6B2800 XOR 6C6C525E
4 billion code = 82077A5E
We just need to use it on the first line of raw code:
20A31928 82077A5E
20A3192C 7A726F70
to armax code:
NNRG-4F7Y-B046W
0K5V-K6WB-8CWQH
VR74-EZC5-10T28
If you start from scratch, the second line wont be neccesary, so we can use this code instead:
20A31928 82077A5E
to armax code:
TBRT-8CWV-GNXG0
0K5V-K6WB-8CWQH
Now I can use it to make the credit number looks pretty .
As a nice side effect, I can now make GT4 hybrid code for any cheat device that have max cash code .
The money code in GT4 seems stored as 8 byte number. This number should be an integer. But it is not stored with little bit of processing. To get a very big credit, you only need the first 4 byte to get 4 billion credit.
Let see the armax code for that, PAL max cash:
YGT5-F9UG-VQU7A
N1H0-5X1J-PJDNY
9BFM-1V81-8N4J7
the raw code of that is:
20A31928 44B14400
20A3192C 44B14400
when we start the game at the first time we have 10000 credit, the code for 10000 credit is:
20A31928 6C6C754E
20A3192C 7A726F70
We only need to change the first four byte to get 4 billion credit, so we only need to change the first line. Here is how I found out how to get any credit we want:
10,000 credit = 6C6C754E
0 credit = 6C6C525E
It is unusual to have 6C6C525E value for 0 credit. So this number should be used to get any other number. Since we want a 4 billion credit then:
4 billion hex code = EE6B2800
if 0 credit is 6C6C525E then 4 billion credit is:
4 billion code = 4 billion hex code XOR 6C6C525E
4 billion code = EE6B2800 XOR 6C6C525E
4 billion code = 82077A5E
We just need to use it on the first line of raw code:
20A31928 82077A5E
20A3192C 7A726F70
to armax code:
NNRG-4F7Y-B046W
0K5V-K6WB-8CWQH
VR74-EZC5-10T28
If you start from scratch, the second line wont be neccesary, so we can use this code instead:
20A31928 82077A5E
to armax code:
TBRT-8CWV-GNXG0
0K5V-K6WB-8CWQH
Now I can use it to make the credit number looks pretty .
As a nice side effect, I can now make GT4 hybrid code for any cheat device that have max cash code .