Hacking VitaCheat/FinalCheat Database

Yohoki

Well-Known Member
Member
Joined
Dec 4, 2018
Messages
824
Trophies
0
Age
34
XP
1,213
Country
United States
Thank you so much,if i want search for example HP,EN Ammo ecc... how do make it?
Do one code type at a time. So, put all your dumps in and the addresses for HP(or whatev) and hit search. The settings on the bottom are set up specifically for Vita, so you no longer have to put in "Starting address" by default, but you may want to activate "Show negatives" before hitting search. You should see a list of addresses pop up and several colors. The black addresses don't match, but colored addresses match. There's a legend below the addresses that tells you how confident the searcher is, so Gold addresses are the BEST match. When you click an address, you'll get a code generated in the bottom left that you can type into vitacheat.

If you only put in 2 dumps, you'll only see green and black addresses. To get the higher colors, you need more dumps. All 6 dumps are required for gold colored addresses.
 
  • Like
Reactions: NeoGranzon

Yohoki

Well-Known Member
Member
Joined
Dec 4, 2018
Messages
824
Trophies
0
Age
34
XP
1,213
Country
United States
I've been playing around with the NSA's Ghidra tool... And while I haven't accomplished anything yet because this is WAY out of my league, I HAVE been able to go from a mem dump to a readable source code. This is the key to those $A200 codes.
upload_2019-10-6_1-21-31.png

I haven't figured out anything yet... but just the fact that I'm seeing the code in this kind of form is blowing my mind.
 
Last edited by Yohoki,

kaymynd

Well-Known Member
Member
Joined
Sep 19, 2018
Messages
644
Trophies
0
Age
31
XP
1,140
Country
United States
Hey @Yohoki i need some help if you have the time, I'm working on an get all items cheat for digimon cs and wasn't sure how to make the code correctly. As i have it now i can spawn any item into the inventory manually but i was hoping there was a way to make it like the max all items code

Max all items code is

$D202 840AD955 00AC85E5
$4001 83F603A4 00000063
$0176 00000020 00000000
$D202 841AD955 00AC85E5
$4001 840603A4 00000063
$0176 00000020 00000000

I somewhat understand the way this code works, anyway the problem is where the item number value 63=99 is always the same for this code, for the get all items code i need the value to start at 1 and to go up by 1 everytime it goes to the next line otherwise it will just put the same item id to all the slots, is this possible? If so can you please show me an example on how this is done? I apologize if you've explained this before, maybe you can link me to that discussion or to a similar code you've already made for another game so that i may compare this code to it.
 
Last edited by kaymynd,

Yohoki

Well-Known Member
Member
Joined
Dec 4, 2018
Messages
824
Trophies
0
Age
34
XP
1,213
Country
United States
Hey @Yohoki i need some help if you have the time, I'm working on an get all items cheat for digimon cs and wasn't sure how to make the code correctly. As i have it now i can spawn any item into the inventory manually but i was hoping there was a way to make it like the max all items code

Max all items code is

$D202 840AD955 00AC85E5
$4001 83F603A4 00000063
$0176 00000020 00000000
$D202 841AD955 00AC85E5
$4001 840603A4 00000063
$0176 00000020 00000000

I somewhat understand the way this code works, anyway the problem is where the item number value 63=99 is always the same for this code, for the get all items code i need the value to start at 1 and to go up by 1 everytime it goes to the next line otherwise it will just put the same item id to all the slots, is this possible? If so can you please show me an example on how this is done?
Yes. In fact, the VitaCheat Tab of TempAR Vita Ed can make that code for you. You need a Compression code, with a address gap of 0x20 and a value gap of 0x1

You've kinda already got it. The code above tells the address to increase by 0x20 every step, what can you imagine the last part of the code is for? For example, this code, will give you 1 of one item, 2 of another, 3 of the next, etc. It's very good for making "groups of codes", like "All keys/potions/armor" without having to add one item at a time.
Code:
$D202 840AD955 00AC85E5
$4001 83F603A4 00000001
$0176 00000020 00000001
$D202 841AD955 00AC85E5
$4001 840603A4 00000001
$0176 00000020 00000001
That should give you enough to make the code you need, since I dunno the addresses. XD
 
  • Like
Reactions: kaymynd

kaymynd

Well-Known Member
Member
Joined
Sep 19, 2018
Messages
644
Trophies
0
Age
31
XP
1,140
Country
United States
Yes. In fact, the VitaCheat Tab of TempAR Vita Ed can make that code for you. You need a Compression code, with a address gap of 0x20 and a value gap of 0x1

You've kinda already got it. The code above tells the address to increase by 0x20 every step, what can you imagine the last part of the code is for? For example, this code, will give you 1 of one item, 2 of another, 3 of the next, etc. It's very good for making "groups of codes", like "All keys/potions/armor" without having to add one item at a time.
Code:
$D202 840AD955 00AC85E5
$4001 83F603A4 00000001
$0176 00000020 00000001
$D202 841AD955 00AC85E5
$4001 840603A4 00000001
$0176 00000020 00000001
That should give you enough to make the code you need, since I dunno the addresses. XD

Epicness!![emoji41] Just what i needed!! Thank you very much!! I will post the codes on here later today or tomorrow once I've had the chance to test it and make sure it works correctly, and i haven't noted down the addresses yet, I've just been editing it through the browse memory option in vitacheat and learning how it works, the item id, inventory slot, item shown(1) or hidden(0), and item type are only a few bytes before the item number so it shouldn't be too difficult to change the above code to work for the item id as well as to make them all appear in the inventory. Thanks again!! I appreciate it brotha!!
 
  • Like
Reactions: Yohoki

Yohoki

Well-Known Member
Member
Joined
Dec 4, 2018
Messages
824
Trophies
0
Age
34
XP
1,213
Country
United States
Epicness!![emoji41] Just what i needed!! Thank you very much!! I will post the codes on here later today or tomorrow once I've had the chance to test it and make sure it works correctly, and i haven't noted down the addresses yet, I've just been editing it through the browse memory option in vitacheat and learning how it works, the item id, inventory slot, item shown(1) or hidden(0), and item type are only a few bytes before the item number so it shouldn't be too difficult to change the above code to work for the item id as well as to make them all appear in the inventory. Thanks again!! I appreciate it brotha!!
No probs. Now if only some one knew C++ and wanted to take a stab at finding codes with Ghidra with me. lmao I really should have learned to program in school. xD
 
  • Like
Reactions: kaymynd

eighthdayregret

fnerrrrrrrrrr!
Member
Joined
Sep 27, 2017
Messages
493
Trophies
0
Age
43
Website
eighthsregrets.blogspot.com
XP
836
Country
United States
Hey @Yohoki i need some help if you have the time, I'm working on an get all items cheat for digimon cs and wasn't sure how to make the code correctly. As i have it now i can spawn any item into the inventory manually but i was hoping there was a way to make it like the max all items code

Max all items code is

$D202 840AD955 00AC85E5
$4001 83F603A4 00000063
$0176 00000020 00000000
$D202 841AD955 00AC85E5
$4001 840603A4 00000063
$0176 00000020 00000000

I somewhat understand the way this code works, anyway the problem is where the item number value 63=99 is always the same for this code, for the get all items code i need the value to start at 1 and to go up by 1 everytime it goes to the next line otherwise it will just put the same item id to all the slots, is this possible? If so can you please show me an example on how this is done? I apologize if you've explained this before, maybe you can link me to that discussion or to a similar code you've already made for another game so that i may compare this code to it.
The second line of each four code is where you increment them, so like this:
Max all items code is

$D202 840AD955 00AC85E5
$4001 83F603A4 00000001
$0176 00000020 00000001
$D202 841AD955 00AC85E5
$4001 84000000ec00000001
$0176 00000020 00000001


EDIT: Damn, late to the game, haha.
 
Last edited by eighthdayregret,
  • Like
Reactions: kaymynd and Yohoki

Yohoki

Well-Known Member
Member
Joined
Dec 4, 2018
Messages
824
Trophies
0
Age
34
XP
1,213
Country
United States
The second line of each four code is where you increment them, so like this:
Max all items code is

$D202 840AD955 00AC85E5
$4001 83F603A4 00000001
$0176 00000020 00000001
$D202 841AD955 00AC85E5
$4001 84000000ec00000001
$0176 00000020 00000001


EDIT: Damn, late to the game, haha.
lolol It's cool. and um. *Cough*#ShamelessPlug*cough*
upload_2019-10-6_20-22-7.png
 
  • Like
Reactions: kaymynd

kaymynd

Well-Known Member
Member
Joined
Sep 19, 2018
Messages
644
Trophies
0
Age
31
XP
1,140
Country
United States
The second line of each four code is where you increment them, so like this:
Max all items code is

$D202 840AD955 00AC85E5
$4001 83F603A4 00000001
$0176 00000020 00000001
$D202 841AD955 00AC85E5
$4001 84000000ec00000001
$0176 00000020 00000001


EDIT: Damn, late to the game, haha.

No worries thanks for posting, this will help others as well I'm sure.

No probs. Now if only some one knew C++ and wanted to take a stab at finding codes with Ghidra with me. lmao I really should have learned to program in school. xD

I don't know much c++, but I'm always willing to learn more coding, as soon as i get back to my laptop I'll install ghidra and give it a try as well maybe we'll finally figure out those dang a200 codes.xD
 
  • Like
Reactions: Yohoki

NeoGranzon

シュウ 「グラビトロンカノン 発射!」
Member
Joined
Aug 4, 2019
Messages
2,949
Trophies
1
XP
7,851
Country
Italy
Hi guys,have modified code for infinite BP for Resident Evil Revelation 2 USA(PCSE00608)with this:

_V0 Infinite BP
$0200 88928F10 0098967F

now,we have 9999999 BP and not decrease!
 
Last edited by NeoGranzon,
  • Like
Reactions: laz305 and CrossOut

CrossOut

Well-Known Member
Member
Joined
Aug 12, 2018
Messages
404
Trophies
0
Age
34
XP
1,262
Country
United Kingdom
This it's happen when I load cheatView attachment 181959
That is odd indeed. Did you install version z06? I use the z05 version and i do not encounter that odd screen glitch. You could try installing it again and see if it still happens. also try the z05 version and see if it happens as well. I did hear that people had problems with the screen on the newer version of vitacheat so i just stayed with the previous version.
 

PikachuPrincess23

Well-Known Member
Member
Joined
Jun 22, 2015
Messages
1,160
Trophies
0
Age
32
XP
4,431
Country
Norway
That is odd indeed. Did you install version z06? I use the z05 version and i do not encounter that odd screen glitch. You could try installing it again and see if it still happens. also try the z05 version and see if it happens as well. I did hear that people had problems with the screen on the newer version of vitacheat so i just stayed with the previous version.
I'm going to try update to 3.65 since I'm on 3.60
 

Yohoki

Well-Known Member
Member
Joined
Dec 4, 2018
Messages
824
Trophies
0
Age
34
XP
1,213
Country
United States
Hi @Yohoki,if i wanted to create HP,EN etc... for all,as i do with TempAr?
If the code you make doesn't work when you turn off the game, you need TempAR. Yes.

Watch this video. It should show you how to use TempAR.
https://github.com/r0ah/vitacheat/wiki/Finding-Pointers-With-TempAR-(Video)

--------------------- MERGED ---------------------------

This it's happen when I load cheatView attachment 181959
You didn't put the font file correctly, it looks like. Try again.
 

NeoGranzon

シュウ 「グラビトロンカノン 発射!」
Member
Joined
Aug 4, 2019
Messages
2,949
Trophies
1
XP
7,851
Country
Italy
If the code you make doesn't work when you turn off the game, you need TempAR. Yes.

Watch this video. It should show you how to use TempAR.
https://github.com/r0ah/vitacheat/wiki/Finding-Pointers-With-TempAR-(Video)

--------------------- MERGED ---------------------------


You didn't put the font file correctly, it looks like. Try again.

Sorry don't understand me,i want create with TempAr is possible?
Another thing,under memory dumps,i can put different code or the same for any?
 

Yohoki

Well-Known Member
Member
Joined
Dec 4, 2018
Messages
824
Trophies
0
Age
34
XP
1,213
Country
United States
Sorry don't understand me,i want create with TempAr is possible?
Another thing,under memory dumps,i can put different code or the same for any?
It's alright. I can see there's a language barrier. I understand that all too well, friend.

Have you made a code at all yet? If you have not, you don't need TempAR yet. The first video that I sent you showed you how to make a code in VitaCheat. Watch that first video to find out how to do that.

If you make a code with VitaCheat and it stops working after a while, you need TempAR. It will create a "Pointer" code to help keep the code working.

Memory dumps are for using in TempAR. You'll want to make sure that the code you've created is inside the memory dump.
 
  • Like
Reactions: NeoGranzon

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    K3Nv2 @ K3Nv2: I've always been kind to @AncientBoi