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

  • Thread starter Thread starter matias3ds
  • Start date Start date
  • Views Views 24,126,340
  • Replies Replies 73,167
  • Likes Likes 249
Super Mario Maker 2

TID: 01009b90006dc000
Build ID: e7101fe3bb2c4bac

[Moonjump (B)]
80000002
04100000 92608E90 40800000
20000000

[Faster Moonjump (B)]
80000002
04100000 92608E90 40C00000
20000000

This code will work on all versions, not just the build ID above.

 
FULL METAL FURIES
TITLE ID:010079300AD54000
BUILD ID: 0b76ec521212fd1c
VERSION: FULL METAL FURIES v1.0.4
REQUEST:
INFINITE HP (1Player, 2Player),
INFINITE POWER (1Player, 2Player),
INFINITE TECHNICS (1Player, 2Player)


NINJIN CLASH OF CARROTS
TITLE ID:010003C00B868000
BUILD ID:82742cdd371d8d46
VERSION: NINJIN CLASH OF CARROTS v1.0.0
REQUEST:
INFINITE HP (1Player, 2Player),
INFINITE SP (1Player, 2Player),
INFINITE CARROTS
 
  • Like
Reactions: platanos
Hi i know this is offtopic, but do you happen to know how to edit the exp multiplier so instead of getting 16x exp i can get x2?
i guessing this code?
Code:
[16x experience points]
040B0000 00B3A060 0B0913E9
040B0000 00B3A064 0B080128
040B0000 00B3A068 D65F03C0
040B0000 000EE58C 94292EB5
"040B0000 00B3A060 0B0913E9" this line is contains the actual modifier:
Code:
add w9, wzr, w9, lsl #?
where the "?" is the multiplier. so 4 is 16(left shift 4 times).
so 2 would be "add w9, wzr, w9, lsl #2" or E9 0B 09 0B, but for switch we have to reverse it. so final code is:
Code:
[2x experience points]
040B0000 00B3A060 0B090BE9
040B0000 00B3A064 0B080128
040B0000 00B3A068 D65F03C0
040B0000 000EE58C 94292EB5
 
i guessing this code?
Code:
[16x experience points]
040B0000 00B3A060 0B0913E9
040B0000 00B3A064 0B080128
040B0000 00B3A068 D65F03C0
040B0000 000EE58C 94292EB5
"040B0000 00B3A060 0B0913E9" this line is contains the actual modifier:
Code:
add w9, wzr, w9, lsl #?
where the "?" is the multiplier. so 4 is 16(left shift 4 times).
so 2 would be "add w9, wzr, w9, lsl #2" or E9 0B 09 0B, but for switch we have to reverse it. so final code is:
Code:
[2x experience points]
040B0000 00B3A060 0B090BE9
040B0000 00B3A064 0B080128
040B0000 00B3A068 D65F03C0
040B0000 000EE58C 94292EB5
i think it's EXP x4 instead, like the code posted earlier or a mistranslation if the code is actually x2 :

https://gbatemp.net/threads/cheat-codes-ams-and-sx-os-add-and-request.520293/page-1193#post-9069433
 
Last edited by toto621,
i think it's EXP x4 instead, like the code posted earlier or a mistranslation if the code is actually x2 :
[Exp x4]
040B0000 00B3A060 0B090BE9
040B0000 00B3A064 0B080128
040B0000 00B3A068 D65F03C0
040B0000 000EE58C 94292EB5
oh, er....in that case,i think i miscounted, try using "0B0907E9" instead.
 

That's right, i think i found a true game-breaking code for Xenoblade DE. and it comes in three "strengthens"
Code:
Please choose and use ONLY 1
[Unlock All Arts]
30010000 0000005C
04110000 28F826F4 03010301
78010000 00000004
31010000
note: this will reset any skills you did upgrade....

[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
update: it was only unlocking and updating to the first level, not fully unlocked....
 
Last edited by Gamerjin,

That's right, i think i found a true game-breaking code. and it comes in three "strengthens"
Code:
[Unlock All Arts]
30010000 0000005C
04110000 28F826F4 00010001
78010000 00000004
31010000
note: this will reset any skills you did upgrade....

[Unlock and Max All Arts]
30010000 0000005C
04110000 28F826F4 000A000A
78010000 00000004
31010000

[Unlock and Max OP All Arts]
30010000 0000005C
04110000 28F826F4 000C000C
78010000 00000004
31010000

is this for xenoblade? because it's crashing my game
 
i guessing this code?
Code:
[16x experience points]
040B0000 00B3A060 0B0913E9
040B0000 00B3A064 0B080128
040B0000 00B3A068 D65F03C0
040B0000 000EE58C 94292EB5
"040B0000 00B3A060 0B0913E9" this line is contains the actual modifier:
Code:
add w9, wzr, w9, lsl #?
where the "?" is the multiplier. so 4 is 16(left shift 4 times).
so 2 would be "add w9, wzr, w9, lsl #2" or E9 0B 09 0B, but for switch we have to reverse it. so final code is:
Code:
[2x experience points]
040B0000 00B3A060 0B090BE9
040B0000 00B3A064 0B080128
040B0000 00B3A068 D65F03C0
040B0000 000EE58C 94292EB5
LSL#1 = 2x
LSL#2 = 4x
LSL#3 = 8x
LSL#4 = 16x
and so on
 
is this for xenoblade? because it's crashing my game
yes, but im still at the beginning, you should be able to trace it, since its in the heap....
i got it to crash by activate the same code, different values. so use only 1 and it shouldn't crash
 
Last edited by Gamerjin,
i guessing this code?
Code:
[16x experience points]
040B0000 00B3A060 0B0913E9
040B0000 00B3A064 0B080128
040B0000 00B3A068 D65F03C0
040B0000 000EE58C 94292EB5
"040B0000 00B3A060 0B0913E9" this line is contains the actual modifier:
Code:
add w9, wzr, w9, lsl #?
where the "?" is the multiplier. so 4 is 16(left shift 4 times).
so 2 would be "add w9, wzr, w9, lsl #2" or E9 0B 09 0B, but for switch we have to reverse it. so final code is:
Code:
[2x experience points]
040B0000 00B3A060 0B090BE9
040B0000 00B3A064 0B080128
040B0000 00B3A068 D65F03C0
040B0000 000EE58C 94292EB5
Thanks for the help! I tried looking for some tutorials, but maybe it's better to learn how to do this myself in the future.
 
Minecraft Dungeons
TID: 01006C100EC08000
BID: 4C96984B61A4D631

Unlimited Enchantment Points (most important)
Unlimited Health
Unlimited Emeralds (money)

I was able to do my own money code, just searched u32 for the amount. When I tried doing enchantment points, the game would crash every time.
 
  • Like
Reactions: comput3rus3r
Xenoblade Chronicles

[Unlock map and Landmarks]
04000000 001C21DC D503201F
04000000 001C4C1C D503201F
does it affect all maps or only the im on? also would it be possible to make a cheat for faster moving speed? thanks for all the cheats youve made!!
 

Site & Scene News

Popular threads in this forum