Hacking VitaCheat/FinalCheat Database

NeoGranzon

シュウ 「グラビトロンカノン 発射!」
Member
Joined
Aug 4, 2019
Messages
2,995
Trophies
1
XP
7,966
Country
Italy
#ID: PCSE00812
#Title: Attack On Titan:Wings of Freedom
#Region: USA
#Version: 1.00+All DLCs
#Type: PKGj
#Code Author: ネオ•グランゾン(NeoGranzon)

_V0 Inf Money
$0200 8BC693B8 3B9AC9FF
$0200 8BB693B8 3B9AC9FF

_V0 Inf Item Battle
$4001 8BBC7D64 00000063
$0006 00000002 00000000
$4001 8BCC7D64 00000063
$0006 00000002 00000000

_V0 All Materials
$4101 8BB9F024 000003E7
$0050 00000030 00000000
$4101 8BC9F024 000003E7
$0050 00000030 00000000

_V0 99 Subjugate Titan
$0000 8BCC9BF4 00000063
$0000 8BCC9BF8 00000063
$0000 8BBC9BF4 00000063
$0000 8BBC9BF8 00000063

_V0 Base Subjugation Special Reward
$4201 8BF96208 05F5E0FF
$0003 00000014 00000000
$4201 8C096208 05F5E0FF
$0003 00000014 00000000

_V0 Always 99 Medals
$4001 8BF96244 00000063
$0003 00000014 00000000
$4001 8C096244 00000063
$0003 00000014 00000000

_V0 Medal and Total Rewards
$4201 8BF96280 05F5E0FF
$0002 00000014 00000000
$4201 8C096280 05F5E0FF
$0002 00000014 00000000

_V0 Total Rating
$4201 8BF95C60 05F5E0FF
$0004 00000014 00000000
$4201 8C095C60 05F5E0FF
$0004 00000014 00000000

_V0 Mission Completed
$0000 8BF95C24 00000007
$0000 8C095C24 00000007
Bonus Video

Note:The codes works in all Modes
 

Attachments

  • PCSE00812.zip
    595 bytes · Views: 158
Last edited by NeoGranzon,

tomberyx

Well-Known Member
Member
Joined
Jan 9, 2020
Messages
1,662
Trophies
2
XP
4,384
Country
Germany
I wouldn't use the unsafe dump for this. Cheat engine can isolate the seg0/seg1 from a whole dump if you tell it to... and then it still has access to the whole dump for other things... Like this:
View attachment 210558
Here, I've used an entire dump (81 thru 8d), and loaded it all into Cheat Engine. From there, I opened the "Dissect structures/data" and set the starting point to dissect as seg1's address and the amount to dissect to seg1's size. That let me see everything in seg1 and still follow pointers easily.

In fact, for this game, it DOES look like this particular dump has 1 pointer.... seg1+77D4 -> +3870 -> +F04. So, I could try this code:
Code:
_V0 Adol Inf HP
$B200 00000001 00000000
$3202 000077D4 00003870
$3200 00000000 00000F04
$3300 00000000 FFFFFFFF
So, even though the pointer starts in Seg1 and seg1 moves around, a pointer can still be found.

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

........ I hate you right now...... do you know how long I've been working on Ys VIII?

I wouldn't use the unsafe dump for this. Cheat engine can isolate the seg0/seg1 from a whole dump if you tell it to... and then it still has access to the whole dump for other things... Like this:
View attachment 210558
Here, I've used an entire dump (81 thru 8d), and loaded it all into Cheat Engine. From there, I opened the "Dissect structures/data" and set the starting point to dissect as seg1's address and the amount to dissect to seg1's size. That let me see everything in seg1 and still follow pointers easily.

In fact, for this game, it DOES look like this particular dump has 1 pointer.... seg1+77D4 -> +3870 -> +F04. So, I could try this code:
Code:
_V0 Adol Inf HP
$B200 00000001 00000000
$3202 000077D4 00003870
$3200 00000000 00000F04
$3300 00000000 FFFFFFFF
So, even though the pointer starts in Seg1 and seg1 moves around, a pointer can still be found.

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

........ I hate you right now...... do you know how long I've been working on Ys VIII?
if anyone of you understands this type with B200+Pointer please show here. I was able to find 00003870 pointer but unfortunately I can't make 000077D4. I did something wrong but what....
 

tomberyx

Well-Known Member
Member
Joined
Jan 9, 2020
Messages
1,662
Trophies
2
XP
4,384
Country
Germany
Well, see here's the thing.... I kinda half cheated......... I've been working on Ys VIII for a long time and have a LONG list of notes... so here's what I did.

In Ys VIII there's an area I know about. It lists all the characters' names and has a pointer to their Stats next to it. I've made pointers using this list before, but everyone else's lists were always in a different area. So I based my code off that area... I'll call it 82001337, because it's the hacking sweet spot there. It's NOT in the seg0/seg1. If I were to follow one of those pointers and add F04 for the offset, I'd have a character's HP. We'll pretend that 82001337 is Adol's Pointer.

So, I loaded a dump into CE. File-> Open a file... -> select dump -> set dump to start at 81000000 and 32bit.

Then I did a normal mem search in CE for addresses inside seg1 that might be pointers to 82001337. Settings are:
Hex [checked]
Value: 81FFD337 - 82001337 (The first value is 82001337 minus 4000. Use calc.)
Scan type: Value between...
Start: Seg1's Address (I'll pretend it starts at 81001000)
End: Seg1's address + it's size. (I'll pretend it was 1000, so this address would be 81001000+1000=81002000)

New search button showed one address (i'll say it's 81FFDAC7‬).

81FFDAC7 is our pointer. If we use Calc, we can see a couple things.
first: 81FFDAC7 - 81001000 = FFCAC7 This is our offset from Seg1.
second: 82001337 - 81FFDAC7 = 3870 This is our pointer offset.

So, with seg1+FFCAC7, we could go to a new area in memory that's based on seg1's instructions. +3870, we'll be at 82001337 which is Adol's Pointer. +F04 and we'll be at Adol's HP. So then the code would be:

$B200 00000001 00000000
$3202 00FFCAC7 00003870
$3200 00000000 00000F04
$3300 00000000 FFFFFFFF

That's what I did. So I did have some little bit of info to start with, but the important stuff all came from Cheat engine. (and Calc.exe because my hexadecimal maths is limited to 1+9=A....)

View attachment 210570
Last part. Please look page 203-204 you will find more Information about it.
This Guy Yohoki was my teacher and he was ver very close to find the best solution if not the best to get stable codes. Please investigate his methode.
I try to reproduce every single step, if I can do it, it won't be long and every game is child's play with this method (hope). If you like i can share my HP Code dump with all Addresses you need to start.
 
Last edited by tomberyx,

cipher_deluxe

Member
Newcomer
Joined
Jun 7, 2022
Messages
17
Trophies
0
Age
34
Location
philippines
XP
29
Country
Philippines
# Title: Dai-3-Ji Super Robot Taisen Z Tengoku-hen
# ID: PCSG00494
# Region: Jap
# Version: 1.02
# Type: NoNpDrm
# Code Author: tomberyx
# PCSG00494

_V0 inf.max Z-Points%
$B200 00000001 00000000
$0200 005AA7CC 04A2CB71

_V0 inf.PT-Points%
$B200 00000001 00000000
$0200 005AA7C0 00691DB8

_V0 inf.max Skill-Points%
$B200 00000001 00000000
$0000 005AA88F 00000062

_V0 inf.max SR-Points
$B200 00000001 00000000
$0000 005AA890 000000FF

_V0 inf.PP-Points all Players[semi]
$B200 00000001 00000000
$0200 003130E0 00012FD1
$0200 00310980 00012FD1
$0200 002FEAA0 00012F61
$4201 002FEB90 00012F61
$0004 000000F0 00000000
$0200 003099F0 00012F61
$0200 00309900 00012F61
$0200 00309720 00012F61
$0200 00306DE0 00012F61
$0200 003107A0 00012F61
$0200 0032CC70 00012F61
$0200 003008A0 00012F61
$0200 003103E0 00012F61
$0200 00301020 00012F61
$0200 00303960 00012F61
$0200 003062A0 00012F61
$0200 00303E10 00012F61
$0200 00305FD0 00012F61
$0200 00306750 00012F61
$0200 00306570 00012F61
$0200 00306C00 00012F61
$0200 00306660 00012F61

_V0 3 Medals
$B200 00000001 00000000
$0000 005AA7F6 0000000F

_V0 New D-Trader%
$B200 00000001 00000000
$0000 005AA8AC 00000020

_V0 Instant load-File [push R]
$C201 00000001 00000200
$B200 00000001 00000000
$0000 005AA6D8 00000012

_V0 Instant Save-File [push R]
$C201 00000001 00000200
$B200 00000001 00000000
$0000 005AA6D8 00000018

_V0 Load data [push R] 41.46.4B.2D
$C201 00000001 00000200
$B200 00000001 00000000
$0000 005AA6D8 00000015






Please do codes for Dai-3-Ji Super Robot Taisen Z Tengoku Hen [PCSG00494]

Game name: Dai-3-Ji Super Robot Taisen Z Tengoku Hen
Game ID: PCSG00494
Format: NONPDRM
version: 1.00

with max money because i cant seem to find a version 1.02 of it thank you in advance be always be blessed
 

ILuvGames

The Avatar-less One
Member
GBAtemp Patron
Joined
Nov 13, 2011
Messages
652
Trophies
2
Location
London
XP
2,196
Country
United Kingdom
when you start the app, there is no update icon?
No, Vitacheat not does have an update icon or automatically update itself. And there are no more updates for Vitacheat right now even if it did. Just new/updated cheat files you can download and use.
 
Last edited by ILuvGames,

sde

Member
Newcomer
Joined
Dec 19, 2021
Messages
11
Trophies
0
Age
34
XP
61
Country
Italy
wrote that he has to update the game, not vitacheat.
usually, when you start app (game) the symbol appears if there are any updates
 

NeoGranzon

シュウ 「グラビトロンカノン 発射!」
Member
Joined
Aug 4, 2019
Messages
2,995
Trophies
1
XP
7,966
Country
Italy
Please do codes for Dai-3-Ji Super Robot Taisen Z Tengoku Hen [PCSG00494]

Game name: Dai-3-Ji Super Robot Taisen Z Tengoku Hen
Game ID: PCSG00494
Format: NONPDRM
version: 1.00

with max money because i cant seem to find a version 1.02 of it thank you in advance be always be blessed
@cipher_deluxe ,try this.
 

ILuvGames

The Avatar-less One
Member
GBAtemp Patron
Joined
Nov 13, 2011
Messages
652
Trophies
2
Location
London
XP
2,196
Country
United Kingdom
wrote that he has to update the game, not vitacheat.
usually, when you start app (game) the symbol appears if there are any updates
Sorry. Didn't realize that you were replying to another post. That's what the 'reply' function is there for.
 

cipher_deluxe

Member
Newcomer
Joined
Jun 7, 2022
Messages
17
Trophies
0
Age
34
Location
philippines
XP
29
Country
Philippines
@nname ,the codes have been adapted for Vitacheat Z06 and Henkaku Enso 3.65 from original code created by r0ah,if you have a different version of Vitacheat Z05 for example,please update Vitacheat.
That's why i make gameplay videos to prove that the codes always work and in any part of the game you use them.
thank you sir appreciated
 

NeoGranzon

シュウ 「グラビトロンカノン 発射!」
Member
Joined
Aug 4, 2019
Messages
2,995
Trophies
1
XP
7,966
Country
Italy
and one thing the problem was that my game was version and on your code its simplify that it needed version 1.02 to work thats my biggest problem because i cant seem to find the updated patch for it, i already check vitacheat and its already been updated to latest version
@cipher_deluxe ,did you install PKGj on the PS Vita?
Before starting the game press on the arrows in a circle and see if you find the update.
If it doesn't find anything, uninstall the game,but first make a backup of the save with Vita Savemanager Plus and then reinstall it via PKGj.
 

cipher_deluxe

Member
Newcomer
Joined
Jun 7, 2022
Messages
17
Trophies
0
Age
34
Location
philippines
XP
29
Country
Philippines
@cipher_deluxe ,did you install PKGj on the PS Vita?
Before starting the game press on the arrows in a circle and see if you find the update.
If it doesn't find anything, uninstall the game,but first make a backup of the save with Vita Savemanager Plus and then reinstall it via PKGj.
im installing a nonpdrm format of the game because i cannot find a mai or vpk version of the anymore, im installing thru vita shell
 

NeoGranzon

シュウ 「グラビトロンカノン 発射!」
Member
Joined
Aug 4, 2019
Messages
2,995
Trophies
1
XP
7,966
Country
Italy
im installing a nonpdrm format of the game because i cannot find a mai or vpk version of the anymore, im installing thru vita shell
@cipher_deluxe ,i install the games via PKGj,
1JiiWGO.jpeg

so i also install the patches or any DLC of the game if there are any.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    Xdqwerty @ Xdqwerty: 455