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

  • Thread starter Thread starter matias3ds
  • Start date Start date
  • Views Views 24,288,131
  • Replies Replies 73,343
  • Likes Likes 249
Mine only has the zelda folder in it.
yes i forgot that there is files that go in the title id folder in atmosphere/contents/
so you would need to go the web site where kaitob has his overlay and find the necessary files for your game the go into the json transalate each title to find the name of the game and its corrisponding cheats then transalate to english but remeber to credit and thank kaitob for his hard work
 
i stongly recommend re-think the survival crystal x?
i will give a x3 booster, but x10 will have you overlapping levels that will not get accounted for correctly.
Code:
[crystal multiplier x3]
04000000 014B2AEC 11000409
04000000 014B2AEC 11000C09
and where do i find level in arcade mode?
Hi @Gamerjin Thank you very much for your help. Would it be okay if you multiply it by 5?

Bro, actually if you multiply it by 10.
This is just an example: For example the stage only asked for 50 crystals and then with multiplier, you collect until 100 crystals. The remainder will be carry forward to the next stage.

Example: Stage 1 need 50 crystals, I gather 200 crystals. Next stage it is carried forward with 150 crystals. Let's next stage, I got no crystals and it need 60 crystals to pass the stage, it will just deduct from the remaining crystals, so next stage, I still have 90 crystals.

Simple example: Stage 1 need 50 crystals but got 200 crystals. So next stage it goes like this 150 / Next stage crystal (ex: 60).

For Story mode, I think this code from @Deadqool can be a reference

This is from his code for 1.0.8

TID: 0100FE701475A000
BID: C2AB36BA76DAA33F
[Instand Max Level (get 1 kill)]
04000000 013A1DFC 52845700

Thanks bro @Gamerjin

So I hope if you are okay with it, please add x10 crystal boosters
 
Last edited by bloodfalco,
Yeah its visual. Use the infinite echoes to use echoes at any level (even if grayed out)
After I upgraded all weapon/bow/bomb. There is the last option, Dr. Lueburry require 25 Might Crystals to get surprised reward, and I cant use your free-use might cheatcode anymore.
 
No, currently Breeze do it while the game is in progress, there are many benefits to do that except memory is very limited. I could make it do pointer search from file which then let you go very deep. I might do it some day just not today. It you are thinking about transferring to PC for further processing then no. I think there is really no need to do that. With Breeze running as application there is enough memory to go very very deep ( if you are rational about the settings )

If you want to dump for pointersearcher se you can continue to use edizon se. ( I already forgotten how )
There is no reason not to mix Breeze and EdiZon SE. You can past the address from Breeze to EdiZon SE by creating a cheat from Breeze then add cheat to bookmark in EdiZon SE.
Post automatically merged:


No, I generally don't do update and it shouldn't be hard to DIY. Just keep in mind some items are stored as earned and spend. available = earned - spend
Very well, if you could do what you say and go into more deep it would be excellent because the truth is that the best thing would be not to use PC but only Breeze as you say.
can someone also send from Edizon to Breeze?

Pd: Taking advantage of space. If I got this in Invincible in ASM how can I change it or why?
str wzr, [x19, #0x68]

Thank you very much for answering
 
Last edited by Jericoss,
i stongly recommend re-think the survival crystal x?
i will give a x3 booster, but x10 will have you overlapping levels that will not get accounted for correctly.
Code:
[crystal multiplier x3]
04000000 014B2AEC 11000409
04000000 014B2AEC 11000C09
and where do i find level in arcade mode?
Thank you for your cheats. I didnt see them previously. They are just like what i was looking for. Many many thanks!
 
yes i forgot that there is files that go in the title id folder in atmosphere/contents/
so you would need to go the web site where kaitob has his overlay and find the necessary files for your game the go into the json transalate each title to find the name of the game and its corrisponding cheats then transalate to english but remeber to credit and thank kaitob for his hard work
Yes i dont have any kaitob files other than the zelda folder. I have searched for kaitob but i keep running into dead ends. I cant find any links when i search.
 
Max Level after 1 kill for Arcade.

For Story mode, I think this code from @Deadqool can be a reference

This is from his code for 1.0.8

TID: 0100FE701475A000
BID: C2AB36BA76DAA33F
[Instand Max Level (get 1 kill)]
04000000 013A1DFC 52845700
ok, i think i may have say story mode, but you requested arcade mode. so did you mean story, or arcade?

also, for the crystal booster:
the top line is the restore code, just replace the bottom line with =>
x5:
04000000 014B2AEC 11001409
x10:
04000000 014B2AEC 11002809
 
  • Like
Reactions: king242
Very well, if you could do what you say and go into more detail it would be excellent because the truth is that the best thing would be not to use PC but only Breeze as you say.
can someone also send from Edizon to Breeze?

Pd: Taking advantage of space. If I got this in Invincible in ASM how can I change it or why?
str wzr, [x19, #0x68]

Thank you very much for answering
Considering that it makes an address zero, you'll need to use free memory and a branch, store your desired value in a register (backup the register to the stack beforehand, but be sure to restore it afterward because the game may depend on it at some point) then write code so that you use 'str x#, [x19, #0x68]' at some point, where 'x#' is the register you modified with your desired value. An example is below. Here, I have assumed that the address of your 'str wzr, [x19, #0x68]' is 0x001678C8, and the start of free memory is 0x133A000. I have chosen x11 as the register to use for the desired value (and I have assumed your desired value is 0x1):

# label: 0x001678C8
bl #0x133A000

# label: 0x0133A000
stp x11, xzr, [sp, #-16]! // push the current value of x11 to the stack
mov x11, #0x1 // store the desired value into x11
str x11, [x19, #0x68] // write the desired value
ldr x11, [sp] // pull the old value from the stack
add sp, sp, #16 // Revert the stack pointer
ret // return to 0x1678CC

The code in this case would be:

04000000 001678C8 944749CE
04000000 0133A000 A9BF7FEB
04000000 0133A004 D280002B
04000000 0133A008 F900366B
04000000 0133A00C F94003EB
04000000 0133A010 910043FF
04000000 0133A014 D65F03C0
 
ok, i think i may have say story mode, but you requested arcade mode. so did you mean story, or arcade?

also, for the crystal booster:
the top line is the restore code, just replace the bottom line with =>
x5:
04000000 014B2AEC 11001409
x10:
04000000 014B2AEC 11002809
Bro @Gamerjin , it is story mode because it is the one which has level up. Thank you bro and sorry for giving misdirection.
 
Last edited by bloodfalco,
Arcade Archives VS. BATTLE CITY 1.0.1
TID: 010038201FB9C000
BID: 7AA9C16AC94BD05D

[Inf,Credits]
[1P Inf.Lives]
[1P Invimcibility]
[1P Always Max Shot Power]
[2P Inf.Lives]
[2P Invincibility]
[2P Always Max Shot Power]

Original Code by ネオ•グランゾン
 

Attachments

Site & Scene News

Popular threads in this forum