ROM Hack Cheat Codes AMS and Sx Os, Add and Request

TomSwitch

Well-Known Member
Member
Joined
Jan 10, 2019
Messages
4,666
Trophies
1
Age
44
XP
15,097
Country
United States
any cheat codes for disco elysium that work with an existing save? and how to apply them? thanks.

PS: The tinfoil website's page for it mentions some cheats
http://tinfoil.io/Title/01006C5015E84000
but for some reason they aren't in tinfoil itself. My guess that it is because they weren't tested for the latest patch, but considering that from what I see they are the exact same in the various patches listed so I presume they weren't changed this time either. I have no idea if they work with an existing save or not though.
Cheat code hack game memory, has nothing to do with save.
 

NeoGranzon

シュウ 「グラビトロンカノン 発射!」
Newcomer
Joined
Aug 4, 2019
Messages
3,093
Trophies
1
XP
8,319
Country
Italy
I told you earlier you have uninitialized register. Look at code type 0 definition again and you will see what I mean. Only the first enabled loop code will work the same every time. The next enabled loop will start with non zero register 1

All register is initialized to zero at the start of the cycle, all enabled code is then executed in sequence where it appeared in the file if enabled. The label is only used for selecting which code is in the execution queue. The register will have value that the prior code set it to.

Concerning the code executing in sequence that is current implementation and SciresM has warned against using that fact. So you can’t even count on the first one working correctly if you have more than one. So all you can count on is only activating one of them at a time.

Do a toggle on each of your loop, making sure there is only one at a time and it will work as you intended. Alternatively set register to 0 before you use them
Sorry @TomSwitch ,could you give me an example because even reading the manual several times i can't understand exactly what i have to do.
 

TomSwitch

Well-Known Member
Member
Joined
Jan 10, 2019
Messages
4,666
Trophies
1
Age
44
XP
15,097
Country
United States
Sorry @TomSwitch ,could you give me an example because even reading the manual several times i can't understand exactly what i have to do.
[example]
98810000
04010000 00808C00 B9400949

98810000 "R1=R0 XOR R0 W=8"
this assign 0 to R1, good to have it but I also don't do it as I would normally make sure no code change R1, in your case you do have code that change R1 above cheat that depended on R1 to be zero, so you are screwed when some one enable those code

04010000 00808C00 B9400949 "[Main+R1+0x0000808C00]=0xB9400949"
Since this line make use of R1, if R1 is not zero you are screwed if what you want is "[Main+0x0000808C00]=0xB9400949"

One of the most commonly used code is 04000000 for ASM hack. Almost nobody clear R0, I also don't but I will make sure there is no code that would change R0 above or the code is totally screwed.
 
Last edited by TomSwitch,
  • Like
Reactions: NeoGranzon

NeoGranzon

シュウ 「グラビトロンカノン 発射!」
Newcomer
Joined
Aug 4, 2019
Messages
3,093
Trophies
1
XP
8,319
Country
Italy
[example]
98810000
04010000 00808C00 B9400949

98810000 "R1=R0 XOR R0 W=8"
this assign 0 to R1, good to have it but I also don't do it as I would normally make sure no code change R1, in your case you do have code that change R1 above cheat that depended on R1 to be zero, so you are screwed when some one enable those code

04010000 00808C00 B9400949 "[Main+R1+0x0000808C00]=0xB9400949"
Since this line make use of R1, if R1 is not zero you are screwed if what you want is "[Main+0x0000808C00]=0xB9400949"

One of the most commonly used code is 04000000 for ASM hack. Almost nobody clear R0, I also don't but I will make sure there is no code that would change R0 above or the code is totally screwed.
@TomSwitch thanks for the answer,but i didn't understand anything.
I'll give you an example of a loop that i did and i couldn't get it to work
Code:
9999 Score for all

30000000 00000210
02010000 017B5FBE 0000270F
78010000 000001D8
31000000
I would like to understand where I am wrong in this code and be able to make it work for future games as well.
 

blackfalcon2525

Well-Known Member
Newcomer
Joined
May 22, 2021
Messages
84
Trophies
0
Age
40
XP
1,037
Country
Japan
I'm sorry again. I would like advice again.
I tried the following two with loop code, but the game failed with an error. Is it wrong to make it?

580E0000 0514A848
580E1000 000001E0
580E1000 00000020
580E1000 00000078
580E1000 00000008
780E0000 00000004
640E0000 00000000 0000005A

580F0000 0514A848
580F1000 000001E0
580F1000 00000020
580F1000 00000078
580F1000 00000008
780F0000 0000001D
640F0000 00000000 00000004



580E0000 0514A848
580E1000 000001E0
580E1000 00000020
580E1000 00000078
580E1000 00000008
780E0000 00000004
580F0000 0514A848
580F1000 000001E0
580F1000 00000020
580F1000 00000078
580F1000 00000008
780F0000 0000001D
300B0000 00000004
640E0000 00000000 0000005A
640F0000 00000000 00000004
780E0000 00000020
780F0000 00000020
310B0000
20000000
 

Gamerjin

Well-Known Member
Member
Joined
May 25, 2016
Messages
2,836
Trophies
1
XP
6,569
Country
United States
@TomSwitch thanks for the answer,but i didn't understand anything.
I'll give you an example of a loop that i did and i couldn't get it to work
Code:
9999 Score for all

30000000 00000210
02010000 017B5FBE 0000270F
78010000 000001D8
31000000
I would like to understand where I am wrong in this code and be able to make it work for future games as well.
So let's say there is the another code that is using R1 is ran, say it ends at 38668. So R1 when finished is going to be 38668. Now this loop is going to run start 017B5FBE + R1(36686) and not 017B5FBE + R1(0) because R1 was used somewhere else. That was why I put in a 400x0000 00000000 00000000 code and say use this if any other code uses the same register.
 
Last edited by Gamerjin,
  • Like
Reactions: NeoGranzon

FFTW

Well-Known Member
Newcomer
Joined
Sep 6, 2021
Messages
67
Trophies
0
Age
30
XP
386
Country
United States
Cheat code hack game memory, has nothing to do with save.
So they apply whether or not you have a save. glad to know that. here is my edited request then:

"any cheat codes for Disco Elysium? and how to apply them? thanks.

PS: The tinfoil website's page for it mentions some cheats
http://tinfoil.io/Title/01006C5015E84000
but for some reason they aren't in tinfoil itself. My guess that it is because they weren't tested for the latest patch, but considering that from what I see they are the exact same in the various patches listed so I presume they most likely weren't changed this time either?"
 

Gamerjin

Well-Known Member
Member
Joined
May 25, 2016
Messages
2,836
Trophies
1
XP
6,569
Country
United States
I'm sorry again. I would like advice again.
I tried the following two with loop code, but the game failed with an error. Is it wrong to make it?

580E0000 0514A848
580E1000 000001E0
580E1000 00000020
580E1000 00000078
580E1000 00000008
780E0000 00000004
640E0000 00000000 0000005A

580F0000 0514A848
580F1000 000001E0
580F1000 00000020
580F1000 00000078
580F1000 00000008
780F0000 0000001D
640F0000 00000000 00000004



580E0000 0514A848
580E1000 000001E0
580E1000 00000020
580E1000 00000078
580E1000 00000008
780E0000 00000004
580F0000 0514A848
580F1000 000001E0
580F1000 00000020
580F1000 00000078
580F1000 00000008
780F0000 0000001D
300B0000 00000004
640E0000 00000000 0000005A
640F0000 00000000 00000004
780E0000 00000020
780F0000 00000020
310B0000
20000000
You might need to double check if the code is writing to vaild memory. Try putting a button activation on it. If it crashes only when you use the button combo, then you might have to separate your code to find out which part is causing the crash.
 
  • Like
Reactions: blackfalcon2525

dsrules

Well-Known Member
Member
Joined
Sep 20, 2005
Messages
8,811
Trophies
2
XP
6,374
Country
  • Like
Reactions: NeoGranzon

blackfalcon2525

Well-Known Member
Newcomer
Joined
May 22, 2021
Messages
84
Trophies
0
Age
40
XP
1,037
Country
Japan
You might need to double check if the code is writing to vaild memory. Try putting a button activation on it. If it crashes only when you use the button combo, then you might have to separate your code to find out which part is causing the crash.
Thank you very much.

Encoding
8kkkkkkk

It's the above code.
I researched various things and made the following code and tried it, but it failed again due to a game error. .. ..

580F0000 0514A848
580F1000 000001E0
580F1000 00000020
580F1000 00000078
580F1000 00000008
C10F0F10
780F0000 00000004
300E0000 00000004
640F0000 00000000 0000005A
780F0000 00000020
310E0000
C10F0F00
780F0000 0000001D
300E0000 00000004
640F0000 00000000 00000004
780F0000 00000020
310E0000
20000000

I will try it with 0x8 code!
 

NeoGranzon

シュウ 「グラビトロンカノン 発射!」
Newcomer
Joined
Aug 4, 2019
Messages
3,093
Trophies
1
XP
8,319
Country
Italy
So let's say there is the another code that is using R1 is ran, say it ends at 38668. So R1 when finished is going to be 38668. Now this loop is going to run start 017B5FBE + R1(36686) and not 017B5FBE + R1(0) because R1 was used somewhere else. That was why I put in a 400x0000 00000000 00000000 code and say use this if any other code uses the same register.
@Gamerjin thanks for reply,If i understand correctly i should add a line like this 400X0000 0000000 00000000 above the code,or am i writing a bullshit?
 

Gamerjin

Well-Known Member
Member
Joined
May 25, 2016
Messages
2,836
Trophies
1
XP
6,569
Country
United States
@Gamerjin thanks for reply,If i understand correctly i should add a line like this 400X0000 0000000 00000000 above the code,or am i writing a bullshit?
hmmm.....you almost have it right, the X is suppose to be the register you want to 0 out, so using your previous example:
Code:
[9999 Score for all]
40010000 00000000 00000000 <- the 1 here
30000000 00000210
02010000 017B5FBE 0000270F <- is suppose to the same as this register here.
78010000 000001D8
31000000
now it wont matter if this code is executed 1st, 3rd, even last. because the first line makes sure that R1 is 0, not whatever value a previous code using R1 left it has.

sidenote:
if this code:
Code:
[Inf.TacP]
30000000 00000003
04010000 01932A10 0098967F
78010000 00000004
31000000
writes out the following:
01932A10 0098967F
01932A14 0098967F
01932A18 0098967F

you can rewrite it as 2/3 lines, no need for a loop code:
Code:
[Inf.TacP]
08000000 01932A10 0098967F 0098967F
04000000 01932A18 0098967F
or
Code:
[Inf.TacP]
40000000 00000000 00000000
08000000 01932A10 0098967F 0098967F
04000000 01932A18 0098967F
if you have other codes using reg 0
 
Last edited by Gamerjin,
  • Like
Reactions: NeoGranzon

angrynewraze

Well-Known Member
Member
Joined
May 27, 2020
Messages
143
Trophies
0
Age
34
XP
268
Country
United States
can I get cheats that actually work. A lot of the ones out don't actually work, crash the game and make it never able to be played again until you redo the atmo jailbreak, or just make it so you can never beat boss fights. Below I listed the codes that don't work and what they cause to happen.

Xenoblade Chronicles Definitive Edition v1.1.2
Title ID:0100FF500E34A000
Build ID:92C78BB3DCBBC3F7

Here's the codes that do not work at all but game still loads and plays just fine you just don't get the benefits from them.
[money inf]
040B0000 00B314EC 7100003F
040B0000 00B314F0 5400004C
040B0000 00B314F4 2A1F03E1
040B0000 00B314F8 2A0103F3
040B0000 00B314FC D65F03C0
040B0000 000EF3C4 9429084A
[noppon stone inf]
040B0000 003518DC 1B1F7EB4

And these codes just simply crash the game and make it never work again
[MT No Cooldown(static)]
04100000 28F26900 42C80000
04100000 28F29D80 00000000
04100000 28F2D200 42C80000
04100000 28F30680 42C80000
04100000 28F33B00 00000000
04100000 28F36f80 42C80000
04100000 28F3A400 42C80000
[Speed loop(ZRA/AB)]
400C0000 00000000 00000114
300E0000 0000000F
80000003
640C01F0 00000000 3F800000
20000000
80000201
640C01F0 00000000 40000000
20000000
780C0000 00003480
310E0000
[All Max Abilities]
400C0000 00000000 0000003C
300E0000 0000000F
640C11F0 00000000 75307530
640C01F0 00000000 75307530
780C0000 0000000C
640C01F0 00000000 75307530
780C0000 00003470
310E0000
[All Max SP]
400C0000 00000000 00002DE4
300E0000 0000000F
640C11F0 00000000 0001869F
640C11F0 00000000 0001869F
640C11F0 00000000 0001869F
640C11F0 00000000 0001869F
640C11F0 00000000 0001869F
780C0000 0000346C
310E0000
[Unlock and Max All Arts]
30010000 0000005C
04110000 28F826F4 030A030A
78010000 00000004
31010000
[Unlock and Max OP All Arts]
30010000 0000005C
04110000 28F826F4 030C030C
78010000 00000004
31010000

And these codes make it so you can never beat main boss fights
[Health Loop]
400C0000 00000000 00000000
300E0000 0000000F
640C01F0 00000000 0000270F
780C0000 00003480
310E0000
[Arts No Cooldown]
04000000 000A98E8 1E2703E2
04000000 000A9958 1E2703E1
04000000 000A99D8 1E2703E0
[No Fall Damage (on)]
04000000 004CFDF8 D503201F
[No Fall Damage (off)]
04000000 004CFDF8 54000145
[Jump Like Hulk(on)]
04000000 004CFDF8 D503201F
04000000 004E2F08 1E27F000
[Jump Normal]
04000000 004E2F08 1E2E1000
[Always full Party Gauge (on)]
040B0000 0054A114 1A89B128
 
Last edited by angrynewraze,

TomSwitch

Well-Known Member
Member
Joined
Jan 10, 2019
Messages
4,666
Trophies
1
Age
44
XP
15,097
Country
United States
@TomSwitch thanks for the answer,but i didn't understand anything.
I'll give you an example of a loop that i did and i couldn't get it to work
Code:
9999 Score for all

30000000 00000210
02010000 017B5FBE 0000270F
78010000 000001D8
31000000
I would like to understand where I am wrong in this code and be able to make it work for future games as well.
98810000 is what you need to add, add this line to every code you have a loop and see what happens

Here is your example after the change

98810000
30000000 00000210
02010000 017B5FBE 0000270F
78010000 000001D8
31000000
 
  • Like
Reactions: NeoGranzon

Konia1234

Member
Newcomer
Joined
Oct 15, 2021
Messages
21
Trophies
0
Age
45
XP
229
Country
China
Request VOICE OF CARDS: THE ISLE DRAGON ROARS v1.0.2 (Unlimited HP) AMS cheats, thank you!
TID: 010071400F836000
BID: FBD754DCD882644E
 

Gamerjin

Well-Known Member
Member
Joined
May 25, 2016
Messages
2,836
Trophies
1
XP
6,569
Country
United States
can I get cheats that actually work. A lot of the ones out don't actually work, crash the game and make it never able to be played again until you redo the atmo jailbreak, or just make it so you can never beat boss fights. Below I listed the codes that don't work and what they cause to happen.

Xenoblade Chronicles Definitive Edition v1.1.2
Title ID:0100FF500E34A000
Build ID:92C78BB3DCBBC3F7

these codes just simply crash the game and make it never work again
[MT No Cooldown(static)]
04100000 28F26900 42C80000
04100000 28F29D80 00000000
04100000 28F2D200 42C80000
04100000 28F30680 42C80000
04100000 28F33B00 00000000
04100000 28F36f80 42C80000
04100000 28F3A400 42C80000
[Speed loop(ZRA/AB)]
400C0000 00000000 00000114
300E0000 0000000F
80000003
640C01F0 00000000 3F800000
20000000
80000201
640C01F0 00000000 40000000
20000000
780C0000 00003480
310E0000
[All Max Abilities]
400C0000 00000000 0000003C
300E0000 0000000F
640C11F0 00000000 75307530
640C01F0 00000000 75307530
780C0000 0000000C
640C01F0 00000000 75307530
780C0000 00003470
310E0000
[All Max SP]
400C0000 00000000 00002DE4
300E0000 0000000F
640C11F0 00000000 0001869F
640C11F0 00000000 0001869F
640C11F0 00000000 0001869F
640C11F0 00000000 0001869F
640C11F0 00000000 0001869F
780C0000 0000346C
310E0000
[Unlock and Max All Arts]
30010000 0000005C
04110000 28F826F4 030A030A
78010000 00000004
31010000
[Unlock and Max OP All Arts]
30010000 0000005C
04110000 28F826F4 030C030C
78010000 00000004
31010000

And these codes make it so you can never beat main boss fights
[Health Loop]
400C0000 00000000 00000000
300E0000 0000000F
640C01F0 00000000 0000270F
780C0000 00003480
310E0000
yeah, some of those look like my codes, were you using the master setup code? i setup the pointer in a separate code, so it doesnt work unless you have the setup pointer code and these codes that use the offsets, which was crafted by using the wii codes as a reference.
 

angrynewraze

Well-Known Member
Member
Joined
May 27, 2020
Messages
143
Trophies
0
Age
34
XP
268
Country
United States
yeah, some of those look like my codes, were you using the master setup code? i setup the pointer in a separate code, so it doesnt work unless you have the setup pointer code and these codes that use the offsets, which was crafted by using the wii codes as a reference.
yeah I was. the master code is one of the codes I can download with aio switch updater.

This is the master code I use
{Xenoblade Chronicles v1.1.2}
581F0000 28Dcc538
780F0000 0015A3CC

And that's the only master code available for download. what's the setup pointer code I need to make your codes work? and which codes are your codes and which are not?
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • HiradeGirl @ HiradeGirl:
    Be a folder? What's the exact error message?
  • K3Nv2 @ K3Nv2:
    Just double click the folder and add it
  • K3Nv2 @ K3Nv2:
    The root folder where you have games stored
  • HiradeGirl @ HiradeGirl:
    Yeah, just try the "add new game directory".
  • JefferyCuddletrousers @ JefferyCuddletrousers:
    no error message, and its just a file not a folder
  • HiradeGirl @ HiradeGirl:
    And do what the troll said.
  • K3Nv2 @ K3Nv2:
    Yeah but Citra uses that to scan folders
  • K3Nv2 @ K3Nv2:
    So it could be like C:\\Games\folder\game.Cci
  • JefferyCuddletrousers @ JefferyCuddletrousers:
    nothing like that pops up
  • JefferyCuddletrousers @ JefferyCuddletrousers:
    wait i mightve gotten it
  • K3Nv2 @ K3Nv2:
    You'll want to add c:\\Games\folder
  • JefferyCuddletrousers @ JefferyCuddletrousers:
    it works now i have no clue what just happened?

    :nayps3:
  • K3Nv2 @ K3Nv2:
    You can also drag and drop the game into it for future reference
  • JefferyCuddletrousers @ JefferyCuddletrousers:
    i know that, it just wouldnt show because it had to be a file and it wasnt
  • K3Nv2 @ K3Nv2:
    Well now it works
  • JefferyCuddletrousers @ JefferyCuddletrousers:
    yeah im confused but thanks all for trying to help haha
  • Sicklyboy @ Sicklyboy:
    Think this Nyko PowerPak+ in my OG 3DS is starting to expand ever so slightly 😨 what a shame, to have to go back to an OG size battery soon.
  • K3Nv2 @ K3Nv2:
    Most emulators will be like that where it asks for a parent directory
  • K3Nv2 @ K3Nv2:
    @Sicklyboy, 3ds batteries are fairly cheap just don't overspend on oem
  • Sicklyboy @ Sicklyboy:
    Yeah I just like this massive extended battery lol
  • K3Nv2 @ K3Nv2:
    Lol length
  • K3Nv2 @ K3Nv2:
    I remember those psp batteries that came with bulged psp battery covers
  • Sicklyboy @ Sicklyboy:
    my PSP battery started swelling up AGES ago
  • Sicklyboy @ Sicklyboy:
    As in I got rid of the battery when I noticed
  • K3Nv2 @ K3Nv2:
    People were hacking batteries just to cfw them
    K3Nv2 @ K3Nv2: People were hacking batteries just to cfw them