Skip to content
tomvita edited this page Mar 19, 2023 · 20 revisions

Welcome to the MyNXCheats wiki! Here you will find some tutorial on making cheats using Breeze

What are memory addresses of consequence

These are addresses of values that if modified give you what you want in game. Each address may only be valid during certain stage of the game. Some stay static through out the game session. Some change when there is a significant state change (you die, you go into a new room, you move on to the next stage). Some even change when you move enough distance from where you were in game.

How you know if you have found an address of consequence

You know this by hacking the value and see if you get what you want, if nothing happen then it is probably not the right one but occasionally the effect is not seen immediately. Some time the game screen only update when the game change the value and not when you change the value. Say you change the HP, the screen display don't change until you get hit or drink a potion.

Search for memory addresses of consequence

Search for number on screen

When a game screen show you numbers that makes searching easier.

Direct Search

The most commonly used data types are u32, f32, f64. Start you search with "==*"

Range Search

Try with different data types

You have to guess what datatype the game use, then start your search

Search for variant of what is on screen

Unknown search

Start with a range

Start with a full dump

Search for difference

Search for any change

Narrow down the list of candidates

If the list is large you may have to narrow it down first before hacking or you may grow old before you actually get something useful. Play the game so that the value of interest changes. Bear in mind the address have to stay static while you search What are memory addresses of consequence. Repeat the search Search for memory addresses of consequenceto narrow down the list.

What to do with the list of candidates found

Look at the size of the list

Hack them and see what happens

Hacking memory

Making cheat code

Pointer

ASM

Clone this wiki locally