Hacking ROM Hack Pokemon Scarlet & Violet Cheat Database

kertakz

New Member
Newbie
Joined
Dec 4, 2022
Messages
2
Trophies
0
Age
33
XP
30
Country
Spain
¿El archivo ScVi en la página 1 es para la versión 1.0.1 o para la 1.1.0?
Egun on, el archivo ScVI es un archivo comprimido, dentro de el y en la carpeta de cada juego, encontraras tres archivos que corresponden a las versiones 1.0.0 / 1.0.1 / 1.1.0
 
  • Like
Reactions: Gambo

DiCiolla5674

Well-Known Member
Newcomer
Joined
Aug 5, 2016
Messages
74
Trophies
0
Age
31
XP
1,487
Country
Luxembourg
How would I be able to change the 990 Item When Used code to have 999 instead?
Here u have it
Game v1.1.0

[Items 999 When Use ON]
040C0000 0311CB80 D2805461
040C0000 0311CB84 F2A040A1
040C0000 0311CB88 6B01029F
040C0000 0311CB8C 54000041
040C0000 0311CB90 52807CE8
040C0000 0311CB94 F90002C8
040C0000 0311CB98 D65F03C0
040C0000 00042D10 94C3679C

[Items 999 When Use OFF]
040C0000 00042D10 F90002C8
 

johnma2

Well-Known Member
Member
Joined
Apr 14, 2018
Messages
148
Trophies
0
XP
145
Country
United States
Here u have it
Game v1.1.0

[Items 999 When Use ON]
040C0000 0311CB80 D2805461
040C0000 0311CB84 F2A040A1
040C0000 0311CB88 6B01029F
040C0000 0311CB8C 54000041
040C0000 0311CB90 52807CE8
040C0000 0311CB94 F90002C8
040C0000 0311CB98 D65F03C0
040C0000 00042D10 94C3679C

[Items 999 When Use OFF]
040C0000 00042D10 F90002C8
Shoot, you didn't have to make the code. Thank you, I really appreciate it. I was just wondering how I would go about actually figuring out what value I would need to change and figure out the math behind it. I used to use hexadecimal back when Action Replay was a thing but I'm just a bit dumb when it comes to Edizon lol.
 
  • Love
Reactions: phil3254

phil3254

Well-Known Member
Member
Joined
Nov 14, 2022
Messages
208
Trophies
0
Age
41
XP
172
Country
United States
I love you folks! <3 such awesome ppl @ gbatemp <3

also this works on 1.1.0 but is not included in the first post just a heads up <3


[Tera Orb Recharges After Battle]
04000000 00041EC0 94C0CCA1
04000000 03075144 F81703E8
04000000 03075148 18000128
04000000 0307514C 6B08029F
04000000 03075150 54000080
04000000 03075154 F85703E8
04000000 03075158 F9000088
04000000 0307515C D65F03C0
04000000 03075160 D2800028
04000000 03075164 F9000088
04000000 03075168 D65F03C0
04000000 0307516C 01060292

[Disable Tera Orb Code]
04000000 00041EC0 F9000088
 
Last edited by phil3254,
  • Like
Reactions: elmoker

Maninblack18

New Member
Newbie
Joined
Dec 5, 2022
Messages
2
Trophies
0
Age
28
XP
14
Country
France
Hi, is it possible to ride Miraidon in Scarlet ? Or do i have to transfer save from scarlet to violet ? If i do that will I have problem ?
 

devilangelsoul

Well-Known Member
Member
Joined
Oct 10, 2010
Messages
182
Trophies
1
XP
579
Country
Italy
Can someone update this for 1.1.0?
it is very useful when you meet teracrystallized pokemon not raid but in overworld.

thx in advance
[Enemy HP1 v1.0.1 (ON)]
040B0000 029764DC 141BFAF6
040B0000 030750B4 B9405002
040B0000 030750B8 36100042
040B0000 030750BC 51000501
040B0000 030750C0 6B21211F
040B0000 030750C4 17E40507
[Enemy HP1 v1.0.1 (OFF)]
040B0000 029764D8 7940B408
040B0000 029764DC 6B21211F
040B0000 02975754 4B220122
040B0000 00042C34 F9400108
 

dsdavis6

Well-Known Member
Member
Joined
Feb 26, 2014
Messages
142
Trophies
1
Age
34
Location
New Bedford, Massachusetts
XP
1,056
Country
For those asking about unlocking 6 star raids, PKhex has flags.
Bool2 for true. There is also a flag for game complete which may well need to be activated for this to function properly. I have already complete and unlocked so cannot test.

pkhex raid flags.png
 

FabioCapela

Well-Known Member
Member
Joined
Jul 12, 2007
Messages
309
Trophies
1
XP
1,259
Country
Brazil
Can anyone explain how to modify the code like this? I don't understand what w21 or w23 is in reference too but I wanna be able to modify the updated shiny multiplier code.
It's ARM64 assembly. You change the right-hand operand to whatever you want (or change to a whole different assembly instruction that will put in w21/w23 the number of shiny rolls you want), use an ARM64 assembler (like https://armconverter.com/ ) to get the bytes you have to put in the right side of the code, invert them (as the cheat code system is designed for numbers, not 4-byte instructions), and replace them in the full code.

For example, if you wanted 100 shiny rolls regardless of which bonuses you have the first instruction would be <mov w21, #100>, which converts to the sequence of bytes 950C8052, which when inverted becomes 52800C95. This is what you put in place of 531C6D15 in the code. You then have to do the same for the second instruction, which should become <mov w23, #100>, whose bytes are 970C8052, and inverted becomes 52800C97, which you put in place of 531C6D17.

This also works for the update 1.1.0 code, BTW.
 

falcozx

Well-Known Member
Newcomer
Joined
Jun 23, 2007
Messages
50
Trophies
1
XP
375
Country
United States
It's ARM64 assembly. You change the right-hand operand to whatever you want (or change to a whole different assembly instruction that will put in w21/w23 the number of shiny rolls you want), use an ARM64 assembler (like https://armconverter.com/ ) to get the bytes you have to put in the right side of the code, invert them (as the cheat code system is designed for numbers, not 4-byte instructions), and replace them in the full code.

For example, if you wanted 100 shiny rolls regardless of which bonuses you have the first instruction would be <mov w21, #100>, which converts to the sequence of bytes 950C8052, which when inverted becomes 52800C95. This is what you put in place of 531C6D15 in the code. You then have to do the same for the second instruction, which should become <mov w23, #100>, whose bytes are 970C8052, and inverted becomes 52800C97, which you put in place of 531C6D17.

This also works for the update 1.1.0 code, BTW.
You're awesome. Thank you for this.
 

phil3254

Well-Known Member
Member
Joined
Nov 14, 2022
Messages
208
Trophies
0
Age
41
XP
172
Country
United States
Scarlet Cheats on Ryujinx stopped working after a crash, do I need to start a new game?
make sure its on the right version like 1.1.0 or whatever your game version should be to match the cheats at the top of ryujinx where it shows the game version as it is running. i had it crash on ava build once and had to re-install the version update 1.0.1 it somehow went back to 1.0.0 on its own after it had crashed. may not be your case but check just in case.

On a side note !
i found something strange today! at the bottom of area zero your reflection in the tera crystal HAS NO GLASSES even if your character is wearing them! skip to about 7 min in to see what i mean its a bit bazar and borderline creeped me out lol

like a creepy lil evil doppelganger waiting to pop out the mirror world and getchya! lol
 

RandomaScreams

New Member
Newbie
Joined
Aug 28, 2022
Messages
3
Trophies
0
Age
26
Location
Germany
XP
58
Country
Germany
Hey, sorry, I was trying to find someone with a similar situation: My game crashes while I have atmosphere running mid battle. When I don't have atmosphere on it doesn't crash. Does anyone know what it might causes it?

Both Violet and Scarlet crash. (Ver. 1.1.0)
 

Pkm collector1

Well-Known Member
Member
Joined
Apr 16, 2014
Messages
206
Trophies
1
Age
42
XP
431
Country
United States
Hi, is it possible to ride Miraidon in Scarlet ? Or do i have to transfer save from scarlet to violet ? If i do that will I have problem ?
you can with the 1.1.0 cheat to turn the game to the other version, also if you have both games and dont want to replay from the other you can do a save swap with the codes save, then exit the codes then go back to the game and it should load the same spot from the other game only down side is make sure you do the save before any x titans or box cover mons the only to get the box cover mon again is to use pkhex box data search. and yes i have done this with my copy
 
  • Like
Reactions: phil3254

chrisrlink

Has a PhD in dueling
Member
Joined
Aug 27, 2009
Messages
5,560
Trophies
2
Location
duel acadamia
XP
5,736
Country
United States
@chrisrlink guessing you clicked it when you didn't defeat all the titans. Guessing it bugged out as there are flags ingame for each Titan. So if you clicked the button when only 2 were defeated for instance, it would probably bug out cos the game see's still that 4 others remain on your map and in the games story etc. Idno I would report it
odd even a new game glitches (crashes on first nemora battle after issuing an attack after i did that on pkhex deleted the save game from HOS too)
Post automatically merged:

Hey, sorry, I was trying to find someone with a similar situation: My game crashes while I have atmosphere running mid battle. When I don't have atmosphere on it doesn't crash. Does anyone know what it might causes it?

Both Violet and Scarlet crash. (Ver. 1.1.0)
hmmmm wonder if ninty put in anti cfw code into 1.1.0? it does this w/o cheats too correct on cfw
 

adiktus

Well-Known Member
Member
Joined
Apr 17, 2013
Messages
180
Trophies
0
Age
36
XP
544
Country
United States
odd even a new game glitches (crashes on first nemora battle after issuing an attack after i did that on pkhex deleted the save game from HOS too)
Post automatically merged:


hmmmm wonder if ninty put in anti cfw code into 1.1.0? it does this w/o cheats too correct on cfw
works fine on mine
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    Xdqwerty @ Xdqwerty: Brb