How to Find Unknown Code Effects!
(warning Psvita will crash more than you like)
This trick is nothing new but its effectiveness is underestimated by many members.
it is not easy to explain so that it can be understood immediately.
Previous knowledge are
HEX-DEC-FLOAT
You can use this on Addresses ,B200 and Pointer codes (300)
Let's say you found an address for inf.Money
for example;
_V0 Inf.Money
$ 0200 82340690 00001234
Now let's take a closer look at this inf.Money address
$ 0200 82340690 00001234
690-ending is our goal here, which we are investigating.
1. We know that this extension 690 is part of the inf.Money code.
Now we are curious and want to know what 691,692,693 and so on are hiding.
There are two ways to find out.
A.
You can change the codes yourself [but it would take a long time 1,2,3,4,5,6,7etc
$ 0200 82340691 00001234
$ 0200 82340692 00001234
$ 0200 82340693 00001234
$ 0200 82340694 00001234
$ 0200 823406XX 00001234
B.
My method immediately searches all the values from 600 to 6FF at once
And this is what it looks like; main code
_V0 Dog-Search Code
$ 4201 82340600 00001234
$ 0040 00000004 00000000
This code above searches all values from 600-6FF
but in 0,4,8,C
and not 1,2,3,4 ...
for example
$ 0200 82340600 00001234
$ 0200 82340604 00001234
$ 0200 82340608 00001234
$ 0200 8234060C 00001234
$ 0200 82340610 00001234
$ 0200 82340614 00001234
$ 0200 82340618 00001234
$ 0200 8234061C 00001234
Until
$ 0200 823406FF 00001234
-----------------------------------------------------------------------------------------------------------------------
Summary:
Your code $ 0200 82340690 00001234
You would like to search immediately through all values from 600 to 6FF
here is the solution; main code
_V0 Dog-Search Code
$ 4201 82340600 00001234
$ 0040 00000004 00000000
-------------------------------------------------------------------------------------------------------------------------
Next step:
You have used the money code to see what values may have changed in the game and suddenly you see that the HP value has changed but you do not know what the address is.
But you already know one thing, the HP code must be in the range of 600-6FF .. and that's good to know.
last step:
Now,how can I find the HP CODE that is somewhere in 600-6FF.
will come soon ........
this method can help very quickly to find everything possible including Walk Walls ,HP,Money,Untouchable and many more ... but you have to understand the whole thing otherwise it doesn't make sense.
If you like to search more than FF (100) change 40 to 400 and you will get 1000. (Not excatly 1000) alle values are in Hex.
I know FF =255 in dec but in this Situation you should take it as 100 (not dec or hex just 100)because you will not get confused in future belive me
