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

BtEtta

Well-Known Member
Member
Joined
Apr 9, 2016
Messages
147
Trophies
0
XP
728
Country
Thanks for the help and info! What does the code that you posted do? Does it just unlock the Bugs and Treasures, or does it give you all of them also? Further thoughts and help appreciated :)
It just unlocks them. You can use the other codes I posted to set them to 99. Also, while you can see the effect of the code on treasures by merely closing and reopening the inventory bugs will only visibly unlock when you go through a loading zone. There might well be a better set of memory locations that wouldn't require the loading zone step but this is what we already had and they work, and are persistent in save files.

I'll give a simplified example of how these codes (also the x99 codes) work.
Consider the following byte (ignore the offset, that's from the save file)
d0xvVqh.png

When written in binary that's: 11001101 with the right-most (least significant) bit being that unknown 2168 value (again the number doesn't mean anything it's just how my aborted save editor displayed unknown values.)
We want it to read as 11101101 so we could just use a code to set the value to 0xED — but if we did that it would set 2168 for people who might not yet have it set in their save file, and unset the Big Bug Net for people who do have it.
The way I've got around this is to load the value into one of atmosphere's cheat engine registers. And then into two more registers I load bitmasks, one for all the bits I want to pass through (00010011) as is, and one for the bits I want to specifically set (11101100).
Now, operating on the value I loaded into the register I first do a bitwise AND with the passthrough mask.
Code:
11001101
00010011
--------
00000001
So now with have value with all the bits I didn't want to change set as they were, and all the bits I did want to change set to 0.
Now with that value I do a bitwise OR with the second bitmask.
Code:
00000001
11101100
--------
11101101
Now we have the correct value we can write that back out to the game's memory.

So in a more full example:
Code:
52000000 0182E17F // Load value [2 bytes] into register 0
40010000 FFFFFFFF FFFFC013 // Load pass-through bitmask [8 bytes] into register 1 Note: Atmosphere only supports loading 8 byte fixed values into registers
40020000 00000000 00003FEC // Load desired values bitmask [8 bytes] into register 2 Note: But you don't need to use all 8 bytes of a register in arithmatic operations
92500010 // register 0 AND register 1 [2 bytes], result goes back into register 0
92600020 // register 0 OR register 2 [2 bytes], result goes back into register 0
A2000400 0182E17F // Write register 0 [2 bytes] back out to game memory
Obviously the more adjacent bytes I can affect at once the better. The treasures for example are spread across 3 adjacent bytes so I can use 4 byte instructions for those.
And sadly the 0x9 code type needed for the AND/OR is only available in Atmosphere so no SXOS here.
 

Skeet1983

Well-Known Member
Member
Joined
Apr 22, 2012
Messages
3,595
Trophies
1
Age
41
Location
Somewhere, out there...
XP
3,184
Country
United States
It just unlocks them. You can use the other codes I posted to set them to 99. Also, while you can see the effect of the code on treasures by merely closing and reopening the inventory bugs will only visibly unlock when you go through a loading zone. There might well be a better set of memory locations that wouldn't require the loading zone step but this is what we already had and they work, and are persistent in save files.

I'll give a simplified example of how these codes (also the x99 codes) work.
Consider the following byte (ignore the offset, that's from the save file)
d0xvVqh.png

When written in binary that's: 11001101 with the right-most (least significant) bit being that unknown 2168 value (again the number doesn't mean anything it's just how my aborted save editor displayed unknown values.)
We want it to read as 11101101 so we could just use a code to set the value to 0xED — but if we did that it would set 2168 for people who might not yet have it set in their save file, and unset the Big Bug Net for people who do have it.
The way I've got around this is to load the value into one of atmosphere's cheat engine registers. And then into two more registers I load bitmasks, one for all the bits I want to pass through (00010011) as is, and one for the bits I want to specifically set (11101100).
Now, operating on the value I loaded into the register I first do a bitwise AND with the passthrough mask.
Code:
11001101
00010011
--------
00000001
So now with have value with all the bits I didn't want to change set as they were, and all the bits I did want to change set to 0.
Now with that value I do a bitwise OR with the second bitmask.
Code:
00000001
11101100
--------
11101101
Now we have the correct value we can write that back out to the game's memory.

So in a more full example:
Code:
52000000 0182E17F // Load value [2 bytes] into register 0
40010000 FFFFFFFF FFFFC013 // Load pass-through bitmask [8 bytes] into register 1 Note: Atmosphere only supports loading 8 byte fixed values into registers
40020000 00000000 00003FEC // Load desired values bitmask [8 bytes] into register 2 Note: But you don't need to use all 8 bytes of a register in arithmatic operations
92500010 // register 0 AND register 1 [2 bytes], result goes back into register 0
92600020 // register 0 OR register 2 [2 bytes], result goes back into register 0
A2000400 0182E17F // Write register 0 [2 bytes] back out to game memory
Obviously the more adjacent bytes I can affect at once the better. The treasures for example are spread across 3 adjacent bytes so I can use 4 byte instructions for those.
And sadly the 0x9 code type needed for the AND/OR is only available in Atmosphere so no SXOS here.

Thank you so much for your help and info! :)
 
Last edited by Skeet1983,

crazy_p

Well-Known Member
Member
Joined
Sep 3, 2016
Messages
1,348
Trophies
1
XP
8,194
Country
Thailand
If a master (@Gamerjin, @TomSwitch , @crazy_p, @xtatu) wants to find the Empire pointers, someone will surely appreciate it :)
The money and the hp's are in floating64.

Hi i see your Problem, it's probably because of the same Reason i can't find any Pointers for
Final Fantasy X-2.

I think it's because the Target Addresses are not in Heap or Main.

In Empire of Sin the Target is in Alias64, it is represented as Heap in the Bookmarks,
i assume that's the Reason why i find some Pointer in Pointer Searcher (But none of them work).

In Final Fantasy X-2 the Target is in Base and the Address is outside of Heap & Main and
that's probably the Reason Pointer Searcher finds nothing.

I think Pointer Searcher needs to be updated to find Addresses in the Base,
Alias/64 & ASLR Memory Regions.

Maybe @TomSwitch can look into this.

Here is a Screenshot of the Memory Addresses.

1.png
 

jayawidura

Well-Known Member
Member
Joined
Sep 2, 2020
Messages
106
Trophies
0
Age
42
XP
342
Country
Indonesia
[Samurai Warriors 5 v.1.02]
[Title ID: 0100B28014132000]
[Build ID: 60b4e42155e07989]
[Max Gold]
04100000 01E2C164 000F423F
[Inf Lumber]
02100000 01E2F3D4 000003E7
[Inf Material]
02100000 01E2F3D6 000003E7
[Inf Fabric]
02100000 01E2F3D8 000003E7
[Inf Weapon Mastery]
04100000 01E2C174 0098967F
[Inf Skill Point]
04100000 01E2C170 0001869F
[INF EXP]
04100000 0A7B68A8 0098967F
[999999 Stock Exp]
04100000 01E2C16C 000F423F

I'll try to update the cheat code for samurai warriors 5 v.1.0.2....it is my first time make an update code so fogive me if its not perfect...I dont know if it works or not...can someone help to try the code...Thank You so Much

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


Can you help make a cheat code for Infinite health?
My Infinite Musou, Rage and EX not working so I edit it....pelase@xatu can you update the code for works with Ver.1.02...thank You so Much for your help
 
  • Like
Reactions: xtatu

tivo76

Well-Known Member
Member
Joined
Nov 29, 2016
Messages
132
Trophies
0
Age
39
XP
181
Country
Canada
is there anyone that can get these skyward sword HD cheats for me please

[Invincible on]

[Invincible off]

[Infinite Stamina (land & under water)]

[Infinite Stamina (Tentalus Battle)]

[Infinite Stamina (Flooded Faron Woods)]

[Infinite Bird Dashes]

[Inf Bird charge (flying)]

[Hold R for Boost-like Speed(while riding bird)]

[Moonjump L+A (Jericoss)]

[MoomJump (L) (xtatu)]

[Moon Jump (B) (TomSwitch)]

[X hover craft mode, use Lstick to move]

[link Walk Speed (R+Y]

[Max Health]

[Max Heart]

[Infinite Health]

[Infinite Health v2]

[Inf Ammo (Nuts/Bomb/Arrows) +900 extra rupee]

[Instant Inf Guardian Potion Effect (invincible)]

[Instant Inf Stamina Potion Effect (SP)]

[Instant Inf Air Potion Effect (Breath Underwater)]

[Silent Realm Cheats]

[Instant finish playing Harp with Fi's song]

[Show all pearls in Silent Realm]

[Silent Realm Pearls (13/15)]

[Instant pass Silent Realm]

[Max Rupees]

[Infinite Max Rupees]

[Inf Spiral]

[Inf SP]

[Inf Dungeon Keys]

[Inf Slingshot Ammo]

[Inf Deku Seeds]

[Inf Arrows]

[Inf Bombs]

[All items]

[Inf upgrade All items]

[South Pouch slot - Hylian Shield]

[Inf Loftwing Charge (Crash inside shop)]

[Inf Loftwing Charge (CJB)]

[Inf Loftwing Charge (X)]

[Inf Bombs (any slot)]

[Get 9999 ruby+ get itens max on]

[Get 9999 ruby+ get itens max off]

[Enemy auto Suicide on]

[Enemy auto Suicide off]

[Hit Range on]

[Hit Range off]

[Movement speed normal]

[Movement speed 1.25x]

[Movement speed 1.5x]

[Movement speed 2x]

[Run speed normal]

[Run speed 1.25x]

[Run speed 1.5x]

[Run speed 2x]

[Game speed normal]

[Game speed 1.25x]

[Game speed 1.5x]

[Game speed 1.75x]

[Game speed 2x]

[o Have Bottle 1 With: Activate One Bottle from Below]

[Heart Potion]

[Heart Potion +]

[Heart Potion ++]

[Stamina Potion]

[Stamina Potion +]

[Air Potion]

[Air Potion +]

[Fairy]

[Revitalizing Potion]

[Revitalizing Potion +]

[o Have Bottle 2 With: Activate One Bottle from Below]

[Heart Potion]

[Heart Potion +]

[Heart Potion ++]

[Stamina Potion]

[Stamina Potion +]

[Air Potion]

[Air Potion +]

[Fairy]

[Revitalizing Potion]

[Revitalizing Potion +]

[o Have Bottle 3 With: Activate One Bottle from Below]

[Heart Potion]

[Heart Potion +]

[Heart Potion ++]

[Stamina Potion]

[Stamina Potion +]

[Air Potion]

[Air Potion +]

[Fairy]

[Revitalizing Potion]

[Revitalizing Potion +]

[o Have Shield / Infinite Durability: Activate One Shield]

[Wooden Shield]

[Banded Shield]

[Braced Shield]

[Iron Shield]

[Reinforced Shield]

[Fortified Shield]

[Sacred Shield]

[Divine Shield]

[Goddess Shield]

[Hylian Shield]

[Infinite Shield Durability(any slot)]

[unlock Weapon Wheel]

[Lightning Skyward Sword]

[Lightning Skyward Sword with sound]

[Instant charge of Skyward Sword]

[Auto charge of Skyward Sword]

[Skyward Sword charge with Thunder (dont use in Last Boss)]

[Get Master Sword from start]

[Master Sword and 3 fire]

[Take off Master Sword and 3 fire (restore Practice Sword)]

[Take off Master Sword and 3 fire (restore Goddess Sword)]

[Take off Master Sword and 3 fire (restore Goddess Longword)]

[Get the 3 fires (for Master Sword)]

[Remove the 3 fires]

[Remove the 2 fires]

[Remove the 1 fire]

[Get Water Dragon's Scale (can dive)]

[Remove Water Dragon's Scale (do at 1st Silent Realm)]

[Get Clawshots]

[Remove Clawshots (do at 2nd Silent Realm)]

[Get Fire earrings **]

[Remove fire earrings (do at 3rd Silent Realm)]

[Get Whip ]

[Remove Whip]

[Get Bow and Arrows]

[Remove Bows]

[- Disable immediately after Enabling -]

[Unlock Tycoon Wallet]

[Have Inf Bombs from Start(10)]

[Max Rupee]

[Max Rupees [CJB]]

[Max heart container]

[Max Hearts + All Hearts Collected]

[Unlimited beetle flying time]

[All bugs and treasures 99]

[unlock All Bugs / Materials [CJB]]

[Inf Bugs / Materials]

[unlock bugs net and all bugs]

[unlock all treasures]

[Gratitude Crystal 80 + Adventure Pouch 8]

[Unlock Gust Bellows]

[have Stone of Trials]

[Bamboo Minigame Current Points (28)]

[Bamboo Minigame Saved Record (28)]
 

aukaloy

Member
Newcomer
Joined
Sep 15, 2017
Messages
5
Trophies
0
XP
87
Country
Philippines
Monster hunter stories 2 1.1.0 update US
[60 FPS]
580F0000 0241EEF8
780F0000 00000054
640F0000 00000000 42700000
[(Hold L3) Game Speed x2]
580F0000 0241EEF8
780F0000 00000050
640F0000 00000000 42700000
20000000
80000010
580F0000 0241EEF8
780F0000 00000050
640F0000 00000000 42F00000
20000000
[Game Speed(L+←/→/↑ Game Speed x1/x1.5/x2 Toggle]
80002040
580F0000 0241EEF8
780F0000 00000050
640F0000 00000000 42700000
20000000
80004040
580F0000 0241EEF8
780F0000 00000050
640F0000 00000000 42F00000
20000000
80001040
580F0000 0241EEF8
780F0000 00000050
640F0000 00000000 42B40000
20000000
[Monster Returns to his Nest]
040C0000 00BD65FC 52800C80
[Infinite Egg Farm carry On]
040C0000 001A0320 D65F03C0
[Unlimited Egg Farm carry Off]
040C0000 001A0320 D10403FF
[32x Damage On]
040C0000 0169F480 39412801
040C0000 0169F484 34000061
040C0000 0169F488 52800402
040C0000 0169F48C 1B097C49
040C0000 0169F490 AA0003F3
040C0000 0169F494 D65F03C0
040C0000 00C35BD0 9429A62C
[64x Damage On]
040C0000 0169F480 39412801
040C0000 0169F484 34000061
040C0000 0169F488 52800802
040C0000 0169F48C 1B097C49
040C0000 0169F490 AA0003F3
040C0000 0169F494 D65F03C0
040C0000 00C35BD0 9429A62C
[900,0000 Zenny]
041C0000 40732670 000DBBA
[x800 Bottle Caps]
021C0000 407335FE 00000320
[Damage Multiplier Off]
040C0000 00C35BD0 AA0003F3
[Battle Items not reduced but increased]
040C0000 00950E5C 0B020129
[Battle Items effect restored]
040C0000 00950E5C 4B020129
[8x Items QTY]
040C0000 00950B90 0B0213F3
[No material used for Crafting Armor/Weapons]
040C0000 0071D658 D503201F
040C0000 0071D6C0 D503201F
[∞ Party HP (Dont use vs follower fights]
040C0000 0169F438 39412A61
040C0000 0169F43C 35000041
040C0000 0169F440 52800009
040C0000 0169F444 6B090108
040C0000 0169F448 D65F03C0
040C0000 00C35BD4 9429A619
[∞ Party HP OFF]
040B0000 00C35BD4 6B090108
[One-hit Part Destruction On]
040B0000 00BE3194 6B292129
[One-hit Part Destruction Off]
040B0000 00BE3194 6B212129
[EXP Gained After Battle = 10,000]
580F0000 02411A38
780F0000 00002304
640F0000 00000000 00002710
[EXP Gained After Battle = 100,000]
580F0000 02411A38
780F0000 00002304
640F0000 00000000 000186A0
[EXP Gained After Battle = 500,000]
580F0000 02411A38
780F0000 00002304
640F0000 00000000 0007A120
[EXP Gained After Battle = 999,999]
580F0000 02411A38
780F0000 00002304
640F0000 00000000 000F423F
[Max Possible EXP Gained After Battle]
580F0000 02411A38
780F0000 00002304
640F0000 00000000 7FFFFFFF
[∞ Prayer Pot Buff (Charm)]
580F0000 023FAEE0
780F0000 000001B0
680F0000 0000008B 00000000
780F0000 00000004
680F0000 45BB7800 00000000
780F0000 00000004
680F0000 00000000 00000000
780F0000 00000004
640F0000 00000000 00000000
[∞ Hot Mist Effect]
580F0000 023FAEE0
780F0000 00000170
680F0000 00000000 00000090
780F0000 00000004
680F0000 44610000 00000000
780F0000 00000004
680F0000 00000000 00000000
780F0000 00000004
640F0000 00000000 00000001
[∞ Cool Mist Effect]
580F0000 023FAEE0
780F0000 00000190
680F0000 00000000 00000091
780F0000 00000004
680F0000 44610000 00000000
780F0000 00000004
680F0000 00000000 00000000
780F0000 00000004
640F0000 00000000 00000001
[(ZL+ZR) Prayer Pot Lvl. 20]
80000300
580F0000 023FAEE0
780F0000 0050CF78
610F0000 00000000 000000A9
20000000
[1st P.P.B. +EXP]
580F0000 023FAEE0
780F0000 0050CF74
610F0000 00000000 00000001
[1st P.P.B. +Rare Gather]
580F0000 023FAEE0
780F0000 0050CF74
610F0000 00000000 00000002
[1st P.P.B. +Battle Result]
580F0000 023FAEE0
780F0000 0050CF74
610F0000 00000000 00000003
[1st P.P.B. +Rare Eggs]
580F0000 023FAEE0
780F0000 0050CF74
610F0000 00000000 00000004
[1st P.P.B. +Kinship Gauge]
580F0000 023FAEE0
780F0000 0050CF74
610F0000 00000000 00000005
[1st P.P.B. -Damage Taken]
580F0000 023FAEE0
780F0000 0050CF74
610F0000 00000000 00000006
[1st P.P.B. +Damage Dealt]
580F0000 023FAEE0
780F0000 0050CF74
610F0000 00000000 00000007
[1st P.P.B. +HP Recovery]
580F0000 023FAEE0
780F0000 0050CF74
610F0000 00000000 00000008
[2nd P.P.B. +EXP]
580F0000 023FAEE0
780F0000 0050CF6C
610F0000 00000000 00000001
[2nd P.P.B. +Rare Gather]
580F0000 023FAEE0
780F0000 0050CF6C
610F0000 00000000 00000002
[2nd P.P.B. +Battle Result]
580F0000 023FAEE0
780F0000 0050CF6C
610F0000 00000000 00000003
[2nd P.P.B. +Rare Eggs]
580F0000 023FAEE0
780F0000 0050CF6C
610F0000 00000000 00000004
[2nd P.P.B. +Kinship Gauge]
580F0000 023FAEE0
780F0000 0050CF6C
610F0000 00000000 00000005
[2nd P.P.B. +Sell Price]
580F0000 023FAEE0
780F0000 0050CF6C
610F0000 00000000 00000006
[2nd P.P.B. -Purchase Price]
580F0000 023FAEE0
780F0000 0050CF6C
610F0000 00000000 00000007
[2nd P.P.B. -Damage Taken]
580F0000 023FAEE0
780F0000 0050CF6C
610F0000 00000000 00000008
[2nd P.P.B. +Damage Dealt]
580F0000 023FAEE0
780F0000 0050CF6C
610F0000 00000000 00000009
[2nd P.P.B. +HP Recovery]
580F0000 023FAEE0
780F0000 0050CF6C
610F0000 00000000 0000000A
[30 FPS]
580F0000 0241EEF8
780F0000 00000054
640F0000 00000000 41F00000

Hi, any updates to this?
Monster Hunter Stories 2 Wings of Ruin
tid:0100E21011446000
bid:EE762E3C16403A53
ver:1.2.0
 

Lindraden

Member
Newcomer
Joined
Jun 25, 2017
Messages
16
Trophies
0
Age
32
XP
110
Country
Australia
[Samurai Warriors 5 v.1.02]
[Title ID: 0100B28014132000]
[Build ID: 60b4e42155e07989]
[Max Gold]
04100000 01E2C164 000F423F
[Inf Lumber]
02100000 01E2F3D4 000003E7
[Inf Material]
02100000 01E2F3D6 000003E7
[Inf Fabric]
02100000 01E2F3D8 000003E7
[Inf Weapon Mastery]
04100000 01E2C174 0098967F
[Inf Skill Point]
04100000 01E2C170 0001869F
[INF EXP]
04100000 0A7B68A8 0098967F
[999999 Stock Exp]
04100000 01E2C16C 000F423F
[inf use ultimate skill]
04000000 00EE7C90 1E27F00C
[inf user rage]
04000000 00D6AF00 D65F03C0
[inf use musou]
04000000 00D6A800 D65F03C0

I'll try to update the cheat code for samurai warriors 5 v.1.0.2....it is my first time make an update code so fogive me if its not perfect...I dont know if it works or not...can someone help to try the code...Thank You so Much

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


Can you help make a cheat code for Infinite health?

I've tested the codes and these don't work.

```
[inf use ultimate skill]
04000000 00EE7C90 1E27F00C
[inf user rage]
04000000 00D6AF00 D65F03C0
[inf use musou]
04000000 00D6A800 D65F03C0
```

I can see how you got them though

Edit: Sorry just saw you posted the same thing!
 

TomSwitch

Well-Known Member
Member
Joined
Jan 10, 2019
Messages
4,471
Trophies
1
Age
44
XP
14,561
Country
United States
Hi i see your Problem, it's probably because of the same Reason i can't find any Pointers for
Final Fantasy X-2.

I think it's because the Target Addresses are not in Heap or Main.

In Empire of Sin the Target is in Alias64, it is represented as Heap in the Bookmarks,
i assume that's the Reason why i find some Pointer in Pointer Searcher (But none of them work).

In Final Fantasy X-2 the Target is in Base and the Address is outside of Heap & Main and
that's probably the Reason Pointer Searcher finds nothing.

I think Pointer Searcher needs to be updated to find Addresses in the Base,
Alias/64 & ASLR Memory Regions.

Maybe @TomSwitch can look into this.

Here is a Screenshot of the Memory Addresses.

View attachment 272274
To find pointer that is shown as [Base+ in edizon se you need the hacked version of noexs sysmodule which I posted here earlier when I notice this with mario golf. I am yet undecided if I should make that one the official version. The moment you update edizon se it will go back to 153 as that is the version I bundle with edizon se.

The problem is the game uses memory segment that is not heap nor main. This hack basically include everything that has RW access and not main as heap .
 

Attachments

  • 054e4f4558454000_v155.zip
    91.7 KB · Views: 123
Last edited by TomSwitch,

xtatu

Well-Known Member
Member
Joined
Dec 4, 2018
Messages
575
Trophies
1
Age
43
Location
japan
XP
5,042
Country
Brazil
SAMURAI WARRIORS 5
tid:0100B28014132800
bid:60B4E42155E07989
ver:1.0.2

[inf use ultimate skill]
04000000 00EE6DDC 1E27F00C

[inf user rage]
04000000 00D69730 D65F03C0

[inf use musou]
04000000 00D69030 D65F03C0

[speed run normal]
04000000 00D3DB80 1E2E1008

[speed run 1.25x]
04000000 00D3DB80 1E2E9008

[speed run 1.5x]
04000000 00D3DB80 1E2F1008

[speed run 1.75x]
04000000 00D3DB80 1E2F9008

[speed run 2x]
04000000 00D3DB80 1E201008

[hitanywhere on]
04000000 00D07380 D65F03C0

[hitanywhere off]
04000000 00D07380 A9BF7BFD

[1p hit kill]
04000000 00E56780 D65F03C0

[always ice wind lightning on]
04000000 00CC6AF0 D65F03C0

[always ice wind lightning off]
04000000 00CC6AF0 F81C0FF7

i found infinity hp
but he died I don't know why
 

songokueleven

Active Member
Newcomer
Joined
Mar 11, 2017
Messages
34
Trophies
0
Age
33
XP
313
Country
Indonesia
SAMURAI WARRIORS 5
tid:0100B28014132800
bid:60B4E42155E07989
ver:1.0.2

[inf use ultimate skill]
04000000 00EE6DDC 1E27F00C

[inf user rage]
04000000 00D69730 D65F03C0

[inf use musou]
04000000 00D69030 D65F03C0

[speed run normal]
04000000 00D3DB80 1E2E1008

[speed run 1.25x]
04000000 00D3DB80 1E2E9008

[speed run 1.5x]
04000000 00D3DB80 1E2F1008

[speed run 1.75x]
04000000 00D3DB80 1E2F9008

[speed run 2x]
04000000 00D3DB80 1E201008

[hitanywhere on]
04000000 00D07380 D65F03C0

[hitanywhere off]
04000000 00D07380 A9BF7BFD

[1p hit kill]
04000000 00E56780 D65F03C0

[always ice wind lightning on]
04000000 00CC6AF0 D65F03C0

[always ice wind lightning off]
04000000 00CC6AF0 F81C0FF7

i found infinity hp
but he died I don't know why
Thank you for always provide us cheats we needs!
 
  • Like
Reactions: xtatu

Arkangelshadow

Well-Known Member
Member
Joined
Jun 6, 2013
Messages
151
Trophies
1
Age
38
XP
1,455
Country
Mexico
Hi, I'm trying to use the battle cheats for "The world ends with you" like exp multiplayer but everytime the game crashes. Cheats like " 9999 money" do not have this issue.

I'm using "breeze" app, the cheats were downloaded using "AIO updater" app.

Any help is appreaciated.
 

felonius

Well-Known Member
Member
Joined
Oct 31, 2006
Messages
261
Trophies
1
XP
2,208
Country
Hi, I'm trying to use the battle cheats for "The world ends with you" like exp multiplayer but everytime the game crashes. Cheats like " 9999 money" do not have this issue.

I'm using "breeze" app, the cheats were downloaded using "AIO updater" app.

Any help is appreaciated.
Suggest u use a ftp app to just copy the cheat folder to your Switch instead.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
    K3Nv2 @ K3Nv2: Well start walking towards them +1