Gaming Gateway Cheats

Status
Not open for further replies.

BASgamer

Well-Known Member
Member
Joined
Sep 15, 2009
Messages
156
Trophies
1
XP
2,094
Country
United States
Is there any way to use a conditional on an 8bit address i see them for 32bits?

items are stored like:
AA BB CC DD EE FF

Trying to check if aa is a positive number if so max it out, and repeat for all the values. I got the loop part already just need how to set up an if an 8 bit value is higher then zero conditional.
 

Localhorst86

Robert'); DROP TABLE members;--
Member
Joined
Jul 17, 2014
Messages
2,736
Trophies
1
Location
Nintendo works for my dad
XP
5,342
Country
Germany
Is there any way to use a conditional on an 8bit address i see them for 32bits?

items are stored like:
AA BB CC DD EE FF

Trying to check if aa is a positive number if so max it out, and repeat for all the values. I got the loop part already just need how to set up an if an 8 bit value is higher then zero conditional.
Using a masked 16-bit conditional should do the trick.
 

DDTarZan

Never getting laid again /s
Member
Joined
Nov 11, 2009
Messages
313
Trophies
1
Age
32
Location
In some trees
XP
1,831
Country
United States
For you Hyrule Warriors Legends goons out there:
[All Materials x999]
1856C24A 000003E7
1856C24C 000003E7
1856C24E 000003E7
1856C250 000003E7
1856C252 000003E7
1856C254 000003E7
1856C256 000003E7
1856C258 000003E7
1856C25A 000003E7
1856C25C 000003E7
1856C25E 000003E7
1856C260 000003E7
1856C262 000003E7
1856C264 000003E7
1856C266 000003E7
1856C268 000003E7
1856C26A 000003E7
1856C26C 000003E7
1856C26E 000003E7
1856C270 000003E7
1856C272 000003E7
1856C274 000003E7
1856C276 000003E7
1856C278 000003E7
1856C27A 000003E7
1856C27C 000003E7
1856C27E 000003E7
1856C280 000003E7
1856C282 000003E7
1856C284 000003E7
1856C286 000003E7
1856C288 000003E7
1856C28A 000003E7
1856C28C 000003E7
1856C28E 000003E7
1856C290 000003E7
1856C292 000003E7
1856C294 000003E7
1856C296 000003E7
1856C298 000003E7
1856C29A 000003E7
1856C29C 000003E7
1856C29E 000003E7
1856C2A0 000003E7
1856C2A2 000003E7
1856C2A4 000003E7
1856C2A6 000003E7
1856C2A8 000003E7
1856C2AA 000003E7
1856C2AC 000003E7
1856C2AE 000003E7
1856C2B0 000003E7
1856C2B2 000003E7
1856C2B4 000003E7
1856C2B6 000003E7
1856C2B8 000003E7
1856C2BA 000003E7
1856C2BC 000003E7
1856C2BE 000003E7
1856C2C0 000003E7
1856C2C2 000003E7
1856C2C4 000003E7
1856C2C6 000003E7
1856C2C8 000003E7
1856C2CA 000003E7
1856C2CC 000003E7
1856C2CE 000003E7
1856C2D0 000003E7
1856C2D2 000003E7
1856C2D4 000003E7
1856C2D6 000003E7
1856C2D8 000003E7
1856C2DA 000003E7
1856C2DC 000003E7
1856C2DE 000003E7
1856C2E0 000003E7
1856C2E2 000003E7
1856C2E4 000003E7
1856C2E6 000003E7
1856C2E8 000003E7
1856C2EA 000003E7
1856C2EC 000003E7
1856C2EE 000003E7
1856C2F0 000003E7
1856C2F2 000003E7
1856C2F4 000003E7
1856C2F6 000003E7
1856C2F8 000003E7
1856C2FA 000003E7
1856C2FC 000003E7
1856C2FE 000003E7
1856C300 000003E7
1856C302 000003E7
1856C304 000003E7
1856C306 000003E7
1856C308 000003E7
1856C30A 000003E7
1856C30C 000003E7
1856C30E 000003E7
1856C310 000003E7
1856C312 000003E7
1856C314 000003E7

+1 more codes for HWL plz
 
  • Like
Reactions: I pwned U!

pongozila

Well-Known Member
Newcomer
Joined
Jun 8, 2008
Messages
99
Trophies
1
XP
416
Country
Brazil
Some more Hyrule Warrios Legends codes:
Windwaker Adventure Map items x5

[WW Adv Items]
0857947C 00000005
08579485 00000005
08579499 00000005
0857949A 00000005
0857949B 00000005
0857949C 00000005
0857949D 00000005
0857949E 00000005
0857949F 00000005
085794A0 00000005
085794A1 00000005
085794A2 00000005
085794A3 00000005
085794A4 00000005

First and more importantly: THIS IS NOT MEANT TO INSULT YOU IN ANY WAY, ONLY TO HELP YOU BETTER UNDERSTAND CODDING A LITTLE BETTER!!

Second: Just so you know, this code may work fine but is rather redundant, because you either use "2" in the beginning of the lines, since you're writing in 8-bit, or use a "0" and use all the line... like:

0857947C 00000005 means you'll write:

05 to the address line 0857947C
00 to the address line 0857947D
00 to the address line 0857947E
00 to the address line 0857947F

But you only want the 05 in 0857947C, so you use 2857947C 00000005

OR

following the same logic, since you want to write in successive bits you could use:

08579499 05050505

is the same as

28579499 00000005
2857949A 00000005
2857949B 00000005
2857949C 00000005

Now you can make a simpler, shorter and more efficient code!

For more info:

http://www.maxconsole.com/maxcon_forums/threads/293144-Gateway-ARCode-Cheat-Sheet

Great code btw! Thanx! :)


EDIT:

For you Hyrule Warriors Legends goons out there:
[All Materials x999]
1856C24A 000003E7
1856C24C 000003E7
1856C24E 000003E7
1856C250 000003E7
1856C252 000003E7
1856C254 000003E7
1856C256 000003E7
1856C258 000003E7
1856C25A 000003E7
1856C25C 000003E7
1856C25E 000003E7
1856C260 000003E7
1856C262 000003E7
1856C264 000003E7
1856C266 000003E7
1856C268 000003E7
1856C26A 000003E7
1856C26C 000003E7
1856C26E 000003E7
1856C270 000003E7
1856C272 000003E7
1856C274 000003E7
1856C276 000003E7
1856C278 000003E7
1856C27A 000003E7
1856C27C 000003E7
1856C27E 000003E7
1856C280 000003E7
1856C282 000003E7
1856C284 000003E7
1856C286 000003E7
1856C288 000003E7
1856C28A 000003E7
1856C28C 000003E7
1856C28E 000003E7
1856C290 000003E7
1856C292 000003E7
1856C294 000003E7
1856C296 000003E7
1856C298 000003E7
1856C29A 000003E7
1856C29C 000003E7
1856C29E 000003E7
1856C2A0 000003E7
1856C2A2 000003E7
1856C2A4 000003E7
1856C2A6 000003E7
1856C2A8 000003E7
1856C2AA 000003E7
1856C2AC 000003E7
1856C2AE 000003E7
1856C2B0 000003E7
1856C2B2 000003E7
1856C2B4 000003E7
1856C2B6 000003E7
1856C2B8 000003E7
1856C2BA 000003E7
1856C2BC 000003E7
1856C2BE 000003E7
1856C2C0 000003E7
1856C2C2 000003E7
1856C2C4 000003E7
1856C2C6 000003E7
1856C2C8 000003E7
1856C2CA 000003E7
1856C2CC 000003E7
1856C2CE 000003E7
1856C2D0 000003E7
1856C2D2 000003E7
1856C2D4 000003E7
1856C2D6 000003E7
1856C2D8 000003E7
1856C2DA 000003E7
1856C2DC 000003E7
1856C2DE 000003E7
1856C2E0 000003E7
1856C2E2 000003E7
1856C2E4 000003E7
1856C2E6 000003E7
1856C2E8 000003E7
1856C2EA 000003E7
1856C2EC 000003E7
1856C2EE 000003E7
1856C2F0 000003E7
1856C2F2 000003E7
1856C2F4 000003E7
1856C2F6 000003E7
1856C2F8 000003E7
1856C2FA 000003E7
1856C2FC 000003E7
1856C2FE 000003E7
1856C300 000003E7
1856C302 000003E7
1856C304 000003E7
1856C306 000003E7
1856C308 000003E7
1856C30A 000003E7
1856C30C 000003E7
1856C30E 000003E7
1856C310 000003E7
1856C312 000003E7
1856C314 000003E7

+1 more codes for HWL plz

Also for this code you could do a trick using the C0000000 XXXXXXXX:

This code allows you to insert a serie of repetitive codes (as long as they have a fix + factor), like this case, since all your codes have a +2 in the sequence.
So you could do them like this:

C0000000 00000066 - this tells how many time the code will repeat (102 in HEX is 66).
1856C24A 000003E7 - the acctual address we're starting with.
DC000000 00000002 - the + factor, in this case 2.
D2000000 00000000 - To end the code.

And that's it... we transformed that huge line of codes to a simple 4 liner that does the same! :) for more info read the same site!

you could also make it "shorter" by compressing two lines in one:
1856C24A 000003E7
1856C24C 000003E7

is the same as

0856C24A 03E703E7

So your code could be

C0000000 00000033 - since now we have half the lines as before.
1856C24A 03E703E7 - since we're writing "two codes at the same time".
DC000000 00000004 - since now the addresses are "+(2+2)"
D2000000 00000000 - the same end... as all things in life has the same end...
 
Last edited by pongozila,

BASgamer

Well-Known Member
Member
Joined
Sep 15, 2009
Messages
156
Trophies
1
XP
2,094
Country
United States
Using a masked 16-bit conditional should do the trick.

C0000000 0000001D
70000000 FF000000
20000000 00000063
DC000000 00000001
D2000000 00000000

This didnt seem to work, i think im using the mask right but i read something about it not working with offsets.
Is there anyway to get these codes to work with offsets? codes are dynamic so i need to use them.
(i do set the offset before this code but left it out due to have less clutter in the code)
 

BASgamer

Well-Known Member
Member
Joined
Sep 15, 2009
Messages
156
Trophies
1
XP
2,094
Country
United States
Your conditional checks whether the value at your offset is lower than 00. That's impossible, your conditional will never be true.
hmm so the gateway code thing got screwed up then

Conditional 16bit deref + write codes:
7XXXXXXX ZZZZYYYY – Greater Than
8XXXXXXX ZZZZYYYY – Less Than
9XXXXXXX ZZZZYYYY – Equal To
AXXXXXXX ZZZZYYYY – Not Equal To

was on gateway website

16bit 'If less-than' instruction.
7XXXXXXX ZZZZYYYY - If the value at (XXXXXXXX or 'offset' when address is 0) masked by ZZZZ < YYYY then execute the following block of instructions
Conditional instructions can be nested.

16bit 'If greater-than' instruction.
8XXXXXXX YYYYYYYY - If the value at (XXXXXXXX or 'offset' when address is 0) masked by ZZZZ > YYYY then execute the following block of instructions.
Conditional instructions can be nested.

16bit 'If equal' instruction.
9XXXXXXX YYYYYYYY - If the value at (XXXXXXXX or 'offset' when address is 0) masked by ZZZZ == YYYY then execute the following block of instructions.
Conditional instructions can be nested.

16bit 'If not equal' instruction.
AXXXXXXX YYYYYYYY - If the value at (XXXXXXXX or 'offset' when address is 0) masked by ZZZZ != YYYY then execute the following block of instructions.
Conditional instructions can be nested.

listed on nds code types
 
Last edited by BASgamer,

Localhorst86

Robert'); DROP TABLE members;--
Member
Joined
Jul 17, 2014
Messages
2,736
Trophies
1
Location
Nintendo works for my dad
XP
5,342
Country
Germany
hmm so the gateway code thing got screwed up then

Conditional 16bit deref + write codes:
7XXXXXXX ZZZZYYYY – Greater Than
8XXXXXXX ZZZZYYYY – Less Than
9XXXXXXX ZZZZYYYY – Equal To
AXXXXXXX ZZZZYYYY – Not Equal To

was on gateway website

16bit 'If less-than' instruction.
7XXXXXXX ZZZZYYYY - If the value at (XXXXXXXX or 'offset' when address is 0) masked by ZZZZ < YYYY then execute the following block of instructions
Conditional instructions can be nested.

16bit 'If greater-than' instruction.
8XXXXXXX YYYYYYYY - If the value at (XXXXXXXX or 'offset' when address is 0) masked by ZZZZ > YYYY then execute the following block of instructions.
Conditional instructions can be nested.

16bit 'If equal' instruction.
9XXXXXXX YYYYYYYY - If the value at (XXXXXXXX or 'offset' when address is 0) masked by ZZZZ == YYYY then execute the following block of instructions.
Conditional instructions can be nested.

16bit 'If not equal' instruction.
AXXXXXXX YYYYYYYY - If the value at (XXXXXXXX or 'offset' when address is 0) masked by ZZZZ != YYYY then execute the following block of instructions.
Conditional instructions can be nested.

listed on nds code types


Yes, Gateway actually got their own code types wrong. Code types 3/4 and 7/8 are mixed up
 

Purple_Heart

GBATemp´s weirdest Individual
Member
Joined
Oct 11, 2015
Messages
4,405
Trophies
1
Age
28
Location
Hamburg
XP
3,730
Country
Germany
Hey here's an infinite health code. I only played the first level so I don't know if this is max HP, but you probably won't die. I am not very familiar with unlock codes so can't help you with that right now. I will get the HP for the crimson one in the next few days hopefully.. and maybe XP after that

Senran Kagura Burst EUR
00040000000F4500

[Infinite Health]
104B1B4F 000043AA

when i enable this code the mission fails near the end (the second mission) (i mean the training)
 

Wekker

Well-Known Member
Member
Joined
Aug 4, 2007
Messages
384
Trophies
0
XP
419
Country
Netherlands
requesting Inazuma Eleven Go Light cheat to unlock connect content. Hope anyone can do it.
 

BASgamer

Well-Known Member
Member
Joined
Sep 15, 2009
Messages
156
Trophies
1
XP
2,094
Country
United States
Yes, Gateway actually got their own code types wrong. Code types 3/4 and 7/8 are mixed up

Thanks for the help made some cheat codes for Final Fantasy Explorers (U) for those that dont want to cheat everything in. These codes will just max items you have at least 1 of to cut down on some of the grind.

[Consumables Max Owned]
6072E168 00000000
B072E168 00000000
DC000000 FFFF1CD8
C0000000 0000001D
80000000 FF000000
20000000 00000063
D0000000 00000000
DC000000 00000001
D2000000 00000000

[Materials Max Owned]
6072E168 00000000
B072E168 00000000
DC000000 FFFFEB30
C0000000 00000156
80000000 FF000000
20000000 00000063
D0000000 00000000
DC000000 00000001
D2000000 00000000

[Atmaliths & Magicites Max Owned]
6072E168 00000000
B072E168 00000000
DC000000 FFFFECC0
C0000000 00000037
80000000 FF000000
20000000 00000063
D0000000 00000000
DC000000 00000001
D2000000 00000000

found i was missing the D0 code to end the if also, it stopped at the first item i had 0 of without that
 
Last edited by BASgamer,

DDTarZan

Never getting laid again /s
Member
Joined
Nov 11, 2009
Messages
313
Trophies
1
Age
32
Location
In some trees
XP
1,831
Country
United States
First and more importantly: THIS IS NOT MEANT TO INSULT YOU IN ANY WAY, ONLY TO HELP YOU BETTER UNDERSTAND CODDING A LITTLE BETTER!!

Second: Just so you know, this code may work fine but is rather redundant, because you either use "2" in the beginning of the lines, since you're writing in 8-bit, or use a "0" and use all the line... like:

0857947C 00000005 means you'll write:

05 to the address line 0857947C
00 to the address line 0857947D
00 to the address line 0857947E
00 to the address line 0857947F

But you only want the 05 in 0857947C, so you use 2857947C 00000005

OR

following the same logic, since you want to write in successive bits you could use:

08579499 05050505

is the same as

28579499 00000005
2857949A 00000005
2857949B 00000005
2857949C 00000005

Now you can make a simpler, shorter and more efficient code!

For more info:

http://www.maxconsole.com/maxcon_forums/threads/293144-Gateway-ARCode-Cheat-Sheet

Great code btw! Thanx! :)


EDIT:



Also for this code you could do a trick using the C0000000 XXXXXXXX:

This code allows you to insert a serie of repetitive codes (as long as they have a fix + factor), like this case, since all your codes have a +2 in the sequence.
So you could do them like this:

C0000000 00000066 - this tells how many time the code will repeat (102 in HEX is 66).
1856C24A 000003E7 - the acctual address we're starting with.
DC000000 00000002 - the + factor, in this case 2.
D2000000 00000000 - To end the code.

And that's it... we transformed that huge line of codes to a simple 4 liner that does the same! :) for more info read the same site!

you could also make it "shorter" by compressing two lines in one:
1856C24A 000003E7
1856C24C 000003E7

is the same as

0856C24A 03E703E7

So your code could be

C0000000 00000033 - since now we have half the lines as before.
1856C24A 03E703E7 - since we're writing "two codes at the same time".
DC000000 00000004 - since now the addresses are "+(2+2)"
D2000000 00000000 - the same end... as all things in life has the same end...
...Good god man. Good job. I already knew a couple things but you just blew my mind and made everything clearer.
 
  • Like
Reactions: pongozila

Entoptical

Well-Known Member
Newcomer
Joined
Jan 5, 2016
Messages
94
Trophies
0
Age
36
XP
404
Country
United States
when i enable this code the mission fails near the end (the second mission) (i mean the training)
Do you have infinite health or is it because you get hit and instantly die? I'd like to fix this ASAP

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

@Entoptical

the sk2 code doesnt show up in gw menu
Looks like I missed a 0, the file should be named 0004000000165800.txt
 

Jo.neon

Member
Newcomer
Joined
Jul 22, 2014
Messages
15
Trophies
0
Age
33
XP
98
Country
United States
Thanks for the help made some cheat codes for Final Fantasy Explorers (U) for those that dont want to cheat everything in. These codes will just max items you have at least 1 of to cut down on some of the grind.

Thanks the material one should help
 

v18281

Well-Known Member
Newcomer
Joined
Jul 6, 2015
Messages
64
Trophies
0
Age
44
XP
1,077
Country
Afghanistan
For mhx1.2, the addresses of activated armor skills are from 304c9820 to 304c9832. Each skill takes 2 bytes.
For example,
D3000000 304c9820
10000000 00000090
D3000000 00000000
activates Weakness Exploit(弱点特効) in the first skill slot.
I can get every skill working fine except sharpness+2(斬れ味レベル+2). The id of sharpness+2 is 0x0053. Setting it does not change the sharpness of the weapon. Does anyone know how to do it? Perhaps @ymyn can help?
 

Entoptical

Well-Known Member
Newcomer
Joined
Jan 5, 2016
Messages
94
Trophies
0
Age
36
XP
404
Country
United States
when i enable this code the mission fails near the end (the second mission) (i mean the training)
Looks like the ninja styles move shifts where the health is stored. this new one should work (hopefully for the whole game), I tested it and it works:

[Infinite Health]
204B1B4F 00000050
 
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    K3Nv2 @ K3Nv2: They really wanna get the head