Example is on TID: 0100A6301214E000 BID: E7E1382D5EB931B0 but the method should apply to all version of the game
Here I will show how the easy hacks are done.
I am going to show you how to DIY the quantity of your inventory items

Search for what you see on screen. u32, float, double are the most commonly used data types, so I recommend to start your search with ==* available on Breeze which will search for all three types in one go.
In this game all the values you see on the bottom of the above screen are u32 but you don't know that when you start. Normally when you found one the others are likely to be the same data type.
Go to a place where you can change the value, first thing you will encounter is healing item Vulnerary and they nicely give you 3 in the tutorial. Search for 3, use one search again, use one search again, hack it and see that you have found the address.
Now that you have found the address place a watch on this address. ZL+dpadup in memory explorer will placed a break point on this memory address.
This action will bring you to gen2 menu. Press + to attach and press R start the watch. Go back to the game and spend another Vunerary. Since the code access the memory if you have found the correct one going back to Breeze and you will find that code that writes to this memory.
Look around the instruction that writes to memory.
When you see a subtract by one you should have a good confidence that this is what you want.
ZL+Y to add this line to cheat.
Goto cheat editor and copy this line for modification.

Change the code from sub to add and put a number that you like, say 100, in this case every time you use you can get extra 100

Test the code
One thing nice about ASM cheat is you can normally get more that one for the price of one. In this game many of the items has a use count of 3. This code makes it unlimited use. If you add a big number you can sell it for a good price.
[Breeze beta64 Fire Emblem Engage 1.0.0 TID: 0100A6301214E000 BID: E7E1382D5EB931B0]
[asm use] the per use hack
04000000 024375F8 51000508
04000000 024375F8 11019108
[asm stats read] not a easy hack, only gets the read only value, needs work that is out of the scope of this post
04000000 02252770 B9001A68
[asm money] can be made into a easy hack but way bother? find it and hack it to a big value and you will never be short again
04000000 028CE308 B9005A60
[asm iron] this one access more that the iron, it access steel and silver as well and something else
04000000 03C9BFC8 A9432109
[asm bond]
04000000 02394758 B9406C08
Before you decide that you have found the right code it is important to check that the code only access the memory you want to hack.
For example the iron code access many items, you will like steel and silver but those unknown items can be problematic.
In general you need to watch an instruction to see what it access.

This instruction reads the iron qty. Place a watch on it and you will see that it access a bigger list that just the three metals.
Hack them and see what happens.


The different number is to identify which memory correspond to what. Not every game let you easily have items you have not found but this game do.
Here I will show how the easy hacks are done.
I am going to show you how to DIY the quantity of your inventory items

Search for what you see on screen. u32, float, double are the most commonly used data types, so I recommend to start your search with ==* available on Breeze which will search for all three types in one go.
In this game all the values you see on the bottom of the above screen are u32 but you don't know that when you start. Normally when you found one the others are likely to be the same data type.
Go to a place where you can change the value, first thing you will encounter is healing item Vulnerary and they nicely give you 3 in the tutorial. Search for 3, use one search again, use one search again, hack it and see that you have found the address.
Now that you have found the address place a watch on this address. ZL+dpadup in memory explorer will placed a break point on this memory address.
This action will bring you to gen2 menu. Press + to attach and press R start the watch. Go back to the game and spend another Vunerary. Since the code access the memory if you have found the correct one going back to Breeze and you will find that code that writes to this memory.
Look around the instruction that writes to memory.
When you see a subtract by one you should have a good confidence that this is what you want.
ZL+Y to add this line to cheat.
Goto cheat editor and copy this line for modification.

Change the code from sub to add and put a number that you like, say 100, in this case every time you use you can get extra 100

Test the code
One thing nice about ASM cheat is you can normally get more that one for the price of one. In this game many of the items has a use count of 3. This code makes it unlimited use. If you add a big number you can sell it for a good price.
[Breeze beta64 Fire Emblem Engage 1.0.0 TID: 0100A6301214E000 BID: E7E1382D5EB931B0]
[asm use] the per use hack
04000000 024375F8 51000508
04000000 024375F8 11019108
[asm stats read] not a easy hack, only gets the read only value, needs work that is out of the scope of this post
04000000 02252770 B9001A68
[asm money] can be made into a easy hack but way bother? find it and hack it to a big value and you will never be short again
04000000 028CE308 B9005A60
[asm iron] this one access more that the iron, it access steel and silver as well and something else
04000000 03C9BFC8 A9432109
[asm bond]
04000000 02394758 B9406C08
Before you decide that you have found the right code it is important to check that the code only access the memory you want to hack.
For example the iron code access many items, you will like steel and silver but those unknown items can be problematic.
In general you need to watch an instruction to see what it access.

This instruction reads the iron qty. Place a watch on it and you will see that it access a bigger list that just the three metals.
Hack them and see what happens.


The different number is to identify which memory correspond to what. Not every game let you easily have items you have not found but this game do.
Attachments
Last edited by TomSwitch,














