Nintendo SWITCH Cheat Codes Download

Avoid creating cheat Request Topic​

Request cheats are made in :​

cheat-codes-ams-and-sx-os-add-and-request-general


This group provides cheat code authors to post works, share experience, learn and exchange

This group also provides cracking game players to get the latest and most complete cheats, and assist in testing

Since GBATemp is the most famous place in the industry, we hope to improve the content quality of this group

The main contents of this group include:
1. Publish personal originals.
2. Improve the quality of secondary creation (including version updates, repairs, and enhancements)
3. Request to create game cheats
4. Tutorial sharing on developing game cheat codes

For technical exchanges, sharing the code of others must attach the URL of the webpage published by the original author (do not copy the complete code)

Although the content of this group is very precious, it is provided for free, and it is not allowed to reprint it to commercial places or paid membership websites for profit.
Nintendo SWITCH Cheat Codes Download
Nintendo SWITCH Cheat Codes Download

Grounded

  • Thread starter Thread starter patjenova
  • Start date Start date
  • Views Views 1,151
  • Replies Replies 21
  • Likes Likes 24

patjenova

Well-Known Member
Member
Joined
Jul 31, 2018
Messages
1,817
Reaction score
7,999
Trophies
2
XP
11,050
Country
Netherlands
Tid: 01006F301AE9C000
Bid: F0AE53338D63199E
Version 1.02
Members only
Codes and spoilers in this group are for members. Join the Nintendo SWITCH Cheat Codes Download group to reveal them. It's free.

I think this is a very nice game so i'll share my cheats with you.
 
Last edited by patjenova,
yes..if someone like survival in quite simple ways then this game is good on you.
 
@patjenova
hi i look through ur code try to learn them and they brough my attention

master code is that load it to stack then u can use it to identify between player and enemies? how did you get this number 81FA8F0 ?

master code

ldrb w9, [x19, #0x28c] <----- im guessing this is original instruction
ldr x3, [x19, #0x370] <----- offset ?
adrp x8, #0x335e000 <----- i saw khuong using this and heard him say some thing about load it to stack and take it to cmp?
str x3, [x8, #0x8f0] <---- store x8, 8f0 to x3 but why is it 8f0?
b #0xfffffffffe214248


hp

ldr s8, [x0, #0x280]
adrp x2, #0x335e000 <---- load up from master code/ stack? from master code is x8 here is x2?
ldr x3, [x2, #0x8f0] <---- guess 2 of these code is use for cmp
ldr x6, [x0, #0x20] <---- hook to player address?
cmp x6, x3
b.ne #0x20
ldr s0, #0x24
str s0, [x0, #0x284]
b #0xfffffffffb3e87c0
.BYTE 0x00, 0x00, 0x00, 0x00

ohk

mov x19, x0
adrp x2, #0x335e000 <---- load these 2 also for enemies cmp
ldr x3, [x2, #0x8f0]
ldr x6, [x0, #0x20]
cmp x6, x3
b.eq #0x20
fmov s0, #1.00000000
str s0, [x19, #0x280] <--- enemies will be 1 hp
b #0xfffffffffb3e8830

in some game that close by address there is same both enemies and player cant really get anything to cmp to, and i did find another place address in memory is far from that but that is only player team is got that and enemies is not. can i use similar method to hook it up?
 
Last edited by ranma99vn,
@patjenova
hi i look through ur code try to learn them and they brough my attention

master code is that load it to stack then u can use it to identify between player and enemies? how did you get this number 81FA8F0 ?

master code

ldrb w9, [x19, #0x28c] <----- im guessing this is original instruction
ldr x3, [x19, #0x370] <----- offset ?
adrp x8, #0x335e000 <----- i saw khuong using this and heard him say some thing about load it to stack and take it to cmp?
str x3, [x8, #0x8f0] <---- store x8, 8f0 to x3 but why is it 8f0?
b #0xfffffffffe214248


hp

ldr s8, [x0, #0x280]
adrp x2, #0x335e000 <---- load up from master code/ stack? from master code is x8 here is x2?
ldr x3, [x2, #0x8f0] <---- guess 2 of these code is use for cmp
ldr x6, [x0, #0x20] <---- hook to player address?
cmp x6, x3
b.ne #0x20
ldr s0, #0x24
str s0, [x0, #0x284]
b #0xfffffffffb3e87c0
.BYTE 0x00, 0x00, 0x00, 0x00

ohk

mov x19, x0
adrp x2, #0x335e000 <---- load these 2 also for enemies cmp
ldr x3, [x2, #0x8f0]
ldr x6, [x0, #0x20]
cmp x6, x3
b.eq #0x20
fmov s0, #1.00000000
str s0, [x19, #0x280] <--- enemies will be 1 hp
b #0xfffffffffb3e8830

in some game that close by address there is same both enemies and player cant really get anything to cmp to, and i did find another place address in memory is far from that but that is only player team is got that and enemies is not. can i use similar method to hook it up?
ldrb w9, [x19, #0x28c] <----- Original code
ldr x3, [x19, #0x370] <----- offset for cmp
adrp x8, #0x335e000 This is the base adres for the stack you're wanna place your offset
str x3, [x8, #0x8f0] <---- This is the offset for the store in stack
b #0xfffffffffe214248

Inf Hp
ldr s8, [x0, #0x280] <---- Load hp
adrp x2, #0x335e000 <---- load up from master code and store base in x2
ldr x3, [x2, #0x8f0] <---- Load stack offset from x2 and store in x3 for cmp
ldr x6, [x0, #0x20] <---- load and offset in x6 and cmp this with x3, [x19, #0x370]
cmp x6, x3
b.ne #0x20
ldr s0, #0x24
str s0, [x0, #0x284]
b #0xfffffffffb3e87c0
.BYTE 0x00, 0x00, 0x00, 0x00
 
ldrb w9, [x19, #0x28c] <----- Original code
ldr x3, [x19, #0x370] <----- offset for cmp
adrp x8, #0x335e000 This is the base adres for the stack you're wanna place your offset
str x3, [x8, #0x8f0] <---- This is the offset for the store in stack
b #0xfffffffffe214248

Inf Hp
ldr s8, [x0, #0x280] <---- Load hp
adrp x2, #0x335e000 <---- load up from master code and store base in x2
ldr x3, [x2, #0x8f0] <---- Load stack offset from x2 and store in x3 for cmp
ldr x6, [x0, #0x20] <---- load and offset in x6 and cmp this with x3, [x19, #0x370]
cmp x6, x3
b.ne #0x20
ldr s0, #0x24
str s0, [x0, #0x284]
b #0xfffffffffb3e87c0
.BYTE 0x00, 0x00, 0x00, 0x00
thanks i need to play around with it try to understand it...

ldr x3, [x19, #0x370] <---- how do i work out this is offset for cmp?

adrp x8, #0x335e000 <---- how did you get this number 0x335e000 ?

str x3, [x8, #0x8f0] <---- i can see 0x8f0 is in ur master codehead line 81FA8F0 but the 81FA where is it come from?


[x0, #0x20] is it offset in player section? [x0, #0x280] hp

so do you watch the [x0, #0x20] show how give you link it to [x19, #0x370] ?

i got the game installed and try to watch the master code ldrb w9, [x19, #0x28c] it take me to that memory offset and the value is 1
then i follow 0x28c to 0x370 offset in memory i cant remember what is it i think it [H+offset] not sure. im at work atm will get back and have a look at it again.

sorry to bother but im really interesting in asm coding
 
@patjenova If you have a time...can you help Update the code to the lastest version : v.1.0.3..I try to update the code with @zzpong code updater not working...Thank you for your Time and hard work..
This is the updated code..but it crash when Open The Infinite Tools Durability
Members only
Codes and spoilers in this group are for members. Join the Nintendo SWITCH Cheat Codes Download group to reveal them. It's free.
 
Last edited by WiduraGoez,
@patjenova If you have a time...can you help Update the code to the lastest version : v.1.0.3..I try to update the code with @zzpong code updater not working...Thank you for your Time and hard work..
This is the updated code..but it crash when Open The Infinite Tools Durability
Members only
Codes and spoilers in this group are for members. Join the Nintendo SWITCH Cheat Codes Download group to reveal them. It's free.
i don't have time for that this week. maybe next week.
 
The Grounded have been update to V.1.0.4...I Just update the code from @ZiT Pointer code....but failed to update from @patjenova code...here is my update code..If someone can enable to update the @patjenova pointer code..really appreciated it...Thank you
Members only
Codes and spoilers in this group are for members. Join the Nintendo SWITCH Cheat Codes Download group to reveal them. It's free.
 

Attachments

  • 306BAA7872EB6071.txt
    306BAA7872EB6071.txt
    804 bytes · Join the group to download
These files are for members of the Nintendo SWITCH Cheat Codes Download group. Join the group to download them. It's free.
The Grounded have been update to V.1.0.5
Members only
Codes and spoilers in this group are for members. Join the Nintendo SWITCH Cheat Codes Download group to reveal them. It's free.
Post automatically merged:

@patjenova can you help update your code for V.1.0.5...Your code is really something..And I always failed to update the code,,,,If you have a time please update the code..thank you so much for your help and share
 
The Grounded have been update to V.1.0.5
Members only
Codes and spoilers in this group are for members. Join the Nintendo SWITCH Cheat Codes Download group to reveal them. It's free.
Post automatically merged:

@patjenova can you help update your code for V.1.0.5...Your code is really something..And I always failed to update the code,,,,If you have a time please update the code..thank you so much for your help and share
 

Attachments

  • 6C91A8A476E70C5D.txt
    6C91A8A476E70C5D.txt
    3.8 KB · Join the group to download
These files are for members of the Nintendo SWITCH Cheat Codes Download group. Join the group to download them. It's free.
  • Like
Reactions: WiduraGoez
can you help update your code for V.1.0.7 Your code is really something..And I always failed to update the code,,,,If you have a time please update the code..thank you so much for your help and share
 
The update just have been release.....I just have been succesfully update the ZIT code that provide..but @patjenova cheat code not successfully...I'm sorry to bother the @patjenova again to update the code..If you have a time..Thank you for your time and help
Members only
Codes and spoilers in this group are for members. Join the Nintendo SWITCH Cheat Codes Download group to reveal them. It's free.
 
Have Been Update the code for V.1.0.9
Members only
Codes and spoilers in this group are for members. Join the Nintendo SWITCH Cheat Codes Download group to reveal them. It's free.
Hello,After using it, I found that 03# No Hunger error Crash the game,06# Infinite Items Invalid。Thank you!
 

Group statistics

Group owner:
matias3ds
Members:
86104
Threads:
7780
Messages:
42300
Photos:
0

Site & Scene News