Gaming Gateway Cheats

  • Thread starter Thread starter blinkzane
  • Start date Start date
  • Views Views 4,764,921
  • Replies Replies 5,000
  • Likes Likes 16
Status
Not open for further replies.
Anyone working on codes/cheats for the following US version games?

- Mario and Luigi Dream Team
- Xenoblade Chronicles 3D
- Zelda Majora's Mask 3D

Thoughts/help appreciated :)

The Legend Of Zelda Majoras Mask 3D (USA)
Downloaded From Fort42: GateShark

Credits and instructions:
http://fort42.cu.cc/gateshark/game1639/
----------------------------------------------------

[Max/Inf Ruppees]
10775318 000003E7

[Max Hearts (Press L)]
DD000000 00000200
10775312 00000140

[Refill Hearts (Press R)]
DD000000 00000100
10775314 00000140

[Max/Inf Health]
00775312 01400140

[Unlock Magic (Press L)]
DD000000 00000200
2077531E 00000001

[Have large Magic]
0077531F 00000001

[Refill Magic (Press L)]
DD000000 00000200
20775317 00000060

[Inf Magic]
20775317 00000060

[Timechanger (Press R)]
DD000000 00000100
207751F9 00000011

[Daychanger (Press R)]
DD000000 00000100
207751EC 00000011

[Namechanger]
00775300 11112222
00775304 33334444
00775308 55556666
0077530C 77778888

[Max/Inf Ruppees in Bank]
10776408 0000270F

[Max/Inf Arrows]
20775391 00000063

[Max/Inf Bombs]
20775396 00000063

[Max/Inf Bombchus]
20775397 00000063

[Max/Inf Deku Nuts]
20775399 00000063

[Max/Inf Deku Sticks]
20775398 00000063

[Max/Inf Magic Beans]
2077539A 00000063

[Max/Inf Powder Keg]
2077639C 00000063

[Have Enhanced Defense]
20775320 00000001

[Have Mirrorshield/Gilded Sword]
20775352 00000023

[Have all masks]
2077536C 00000032
2077536D 00000033
2077536E 00000034
2077536F 00000035
20775370 00000036
20775371 00000037
20775372 00000038
20775373 00000039
20775374 0000003A
20775375 0000003B
20775376 0000003C
20775377 0000003D
20775378 0000003E
20775379 0000003F
2077537A 00000040
2077537B 00000041
2077537C 00000042
2077537D 00000043
2077537E 00000044
2077537F 00000045
20775380 00000046
20775381 00000047
20775382 00000048
20775383 00000049

[Have all Items]
20775355 00000001
20775356 00000002
20775357 00000003
20775358 00000004
2077535A 00000006
2077535B 00000007
2077535C 00000008
2077535D 00000009
2077535E 0000000A
20775360 0000000C
20775361 0000000D
20775362 0000000E
20775363 0000000F
20775364 00000010
20775384 00000012
20775385 00000012
20775386 00000012
20775387 00000012
20775388 0000002C
20775389 0000002D
2077538A 00000030
 
assume it is always different.
we save its value immediately before and restore it immediately after the conditional check.
i hope i explained it well enough, do you get it?
restore it then your cheat will lose effect
why not just use button to poke the value in your cheat?
 
restore it then your cheat will lose effect
why not just use button to poke the value in your cheat?
no you don't understand :(
i want to check what 8bit value is at, and do something depending on it's value.

an exmaple: so at 0x00123450, i want to see if the 8bit value is 00.
i can't do a check, because gw only gives us 16bit conditionals.
i can't treat it as a 16bit, because i have no idea what the following value at 0x00123451 is. if it is 8bit, 16bit, 32bit, i have no idea.
but what i can do, is write the 8bit value at 0x00123451 to the data register. then set 0x00123451 to 00.
then, do a 16bit conditional check, i know 0x00123451 will be 00, so there is no problem.
after the conditional check, i do whatever action i wanted.
then, i can restore the saved value from the register back to 0x00123451 so there is no lost data :)

i hope this makes sense now? :)
 
no you don't understand :(
i want to check what 8bit value is at, and do something depending on it's value.

an exmaple: so at 0x00123450, i want to see if the 8bit value is 00.
i can't do a check, because gw only gives us 16bit conditionals.
i can't treat it as a 16bit, because i have no idea what the following value at 0x00123451 is. if it is 8bit, 16bit, 32bit, i have no idea.
but what i can do, is write the 8bit value at 0x00123451 to the data register. then set 0x00123451 to 00.
then, do a 16bit conditional check, i know 0x00123451 will be 00, so there is no problem.
after the conditional check, i do whatever action i wanted.
then, i can restore the saved value from the register back to 0x00123451 so there is no lost data :)

i hope this makes sense now? :)
if the value you saved will change randomly at the address then there is no point in restoring it
I mean if the value is 0001 you want to do actionA, if the value is 0002 you want to do actionB, why not push A for actionA, push B for ActionB without checking for any value or the game will crash if you enable the cheat when the condition is not meet?
 
if the value you saved will change randomly at the address then there is no point in restoring it
I mean if the value is 0001 you want to do actionA, if the value is 0002 you want to do actionB, why not push A for actionA, push B for ActionB without checking for any value or the game will crash if you enable the cheat when the condition is not meet?
the point is we don't know what this other value is. it might be needed. if my lives are next to my score, my score can change right? i want to do a conditional against how many lives i have.
to do a check, i will have to set a part of the score to 00. but as soon as the check is done i will restore that data back. so no loss.
why would i not want to restore that data back?
it will be restored as soon as the code runs and the game will not know anything, because it will all happen in one action.
right?
the reason why i don't want to use button activators for some stuff is the same reason anyone ever uses conditional checks. they are more powerful.
and this can still be called by a button activator anyway, just like any code.
 
the point is we don't know what this other value is. it might be needed. if my lives are next to my score, my score can change right? i want to do a conditional against how many lives i have.
to do a check, i will have to set a part of the score to 00. but as soon as the check is done i will restore that data back. so no loss.
why would i not want to restore that data back?
it will be restored as soon as the code runs and the game will not know anything, because it will all happen in one action.
right?
the reason why i don't want to use button activators for some stuff is the same reason anyone ever uses conditional checks. they are more powerful.
and this can still be called by a button activator anyway, just like any code.
based on what you were saying, you are not trying to lock the value, but poke it 1 time when it meets the conditional check
it would still be better to use buttons to poke it unless you setup a lot of codes, if = 0001 do actionA, = 0002 do actionB, = 00XX do actionXX, etc
 
Last edited by dsrules,
Anyway someone can make some codes for Shin Megami Tensei Devil Survivor 2 Record Breakers. Fort42 doesn't seem to have anything on this game.

Found a money cheat that I posted to the fort42 database, not so good at this but I set the value to FF and got a ton of money.
 
based on what you were saying, you are not trying to lock the value, but poke it 1 time when it meets the conditional check
it would still be better to use buttons to poke it unless you setup a lot of codes, if = 0001 do actionA, = 0002 do actionB, = 00XX do actionXX, etc
sure, but that argument could be used against all conditional type codes, right? :)



-- i made some ram dumps on the gw cheat menu, but where do they go? i can't find them on the gw sd card or the 3ds sd card...
 
Last edited by cearp,
@caitsith2 thanks for the addresses for USA badge center :)
i changed your codes a little to make them nicer for me. thanks for sharing!


[Press L+Down for 2 plays]
DD000000 00000280
D3000000 3286744C
00000000 00000002
D0000000 00000000

[Press L+Right for +1 play]
DD000000 00000210
D3000000 3286744C
D9000000 00000000
D4000000 00000001
D6000000 00000000
D0000000 00000000

[Press L+UP for 50 plays]
DD000000 00000240
D3000000 3286744C
00000000 00000032
D0000000 00000000

- i used these now, yeah without the 1, 2 plays code I shared, you would really have to play for 99 times until you are finished!
just now i cleared out the whole badge center, all 30 sets they had i completed. i feel a bit sick... very repetitive :) it would have cost a lot of money to do all of that, i used so many turns.
now i will find the offset for jp (and share of course), and get all of the badges there too....
 
Last edited by cearp,
sure, but that argument could be used against all conditional type codes, right? :)



-- i made some ram dumps on the gw cheat menu, but where do they go? i can't find them on the gw sd card or the 3ds sd card...
some game should have good use of it

you should find the memory dump in your gw microsd as 00000000.bin , etc
but, seems they are useless as the address in the file doesn't match the address you found with Cheat Finder

@caitsith2 thanks for the addresses for USA badge center :)
i changed your codes a little to make them nicer for me. thanks for sharing!
do you always need to be online to play this game? it won't let me play if my wifi is off
 
Last edited by dsrules,
  • Like
Reactions: cearp
Found a money cheat that I posted to the fort42 database, not so good at this but I set the value to FF and got a ton of money.
Nice. Big thanks. Im hoping someone can figure am easy exp/lv cheat so can easily get those higher level personas.

Edit:If memory serves me correct there was some codes for it on here somewhere but I cant find them via the search button. And those codes were not posted on Fort42... I think they were forgotten or overlooked.
 
Last edited by qaz015393,
As i asked before, is there a possible way to make/find a adress for the mii lobby tickets in the EU Version?

ThX
 
for anyone in US , you can use the search finder to search for the value in badge arcade
i think i found the address in the US version
real catcher : 3286744C

practice : 3322F9BC ( not sure about this )
 
I can't figure out how to upload codes to that site, but I came up with the following for Triforce heroes (I have no idea why I have 3 addresses for rupees and a previous post here only has the first one, but I can max out rupees with no crash...
USA Triforce Heroes v2.1
Game: 0004000000176F00

[Rupees (in town)]
D3000000 32000000
00C82520 0001869D
00D9215C 0001869D
00D92160 0001869D

Set all 3 addresses to 9D8601 (1869D backwards) while in-game, then as soon as you slash a bush and collect 1 rupee, you will jump up to 99998 rupees! With the above code, I first jumped to 99999 for some reason until I got another rupee, and it stuck at 99997 after that.

[Time during the trials]
D3000000 32000000
20D81F18 0000003B //or more, if you like


I haven't been able to nail down the hearts yet...
 
Also, the addresses for badge arcade were not working for me, so I did my own search for practice numbers and I got 2 addresses there that don't match anything I've seen here:
3682155C
37249340

I was on 1 play left when I narrowed the search to those two addresses so I set them both to 5. After using the play, it went to 4 (naturally) and BOTH addresses went down to 4.

Are there different addresses for o3ds and N3ds models for games?

Edit: so for me, only changing 3682155C does the trick, but that second address always changes to match... This is on an N3DS, USA region. So is it possible for me to figure out the proper address for the REAL plays without buying some and doing searches myself? I really wonder why my address is different :/
 
Last edited by urherenow,
I can't figure out how to upload codes to that site, but I came up with the following for Triforce heroes (I have no idea why I have 3 addresses for rupees and a previous post here only has the first one, but I can max out rupees with no crash...
USA Triforce Heroes v2.1
Game: 0004000000176F00

[Rupees (in town)]
D3000000 32000000
00C82520 0001869D
00D9215C 0001869D
00D92160 0001869D

Set all 3 addresses to 9D8601 (1869D backwards) while in-game, then as soon as you slash a bush and collect 1 rupee, you will jump up to 99998 rupees! With the above code, I first jumped to 99999 for some reason until I got another rupee, and it stuck at 99997 after that.

[Time during the trials]
D3000000 32000000
20D81F18 0000003B //or more, if you like


I haven't been able to nail down the hearts yet...
how did you do it I tried so many times but I failed I have the European version can you do some codes for the European version or at least you can show me how you do it please
 
how did you do it I tried so many times but I failed I have the European version can you do some codes for the European version or at least you can show me how you do it please
you need gw 3.6.1 to search, it won't work with gw 3.6
what you see is what you search
 
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum