Do a code search to maximize the number of Gal ☆ Gun 2 sweets
I did, but I couldn't find the address and it freezes.
I tried the following code search.
TYPE: u8 / MODE: <, ==,! =, DIFF / REGION: HEAP / VALUE: Number of sweets
Is it difficult to search for a code using only Edizon SE?
Please let me know if anyone knows.
I can't advise you specific to this game, generally searching for a number you can see on screen should be fairly easy for most games. You are vague in what you did so I can't help you there. I would normally start with ==* and ram. The latest edizon se would default to u32 == and ram, press - once to change it to ==*.
ram is good idea as heap would take up most time and main and whatever that is left of ram is almost nothing.
==* search also for float and double in addition to u32, occasionally the values are in the other two format
u8 is one of the last resort, most modern game won't be using it. u8 and u16 are for those lame ports of very old game that ends up just emulating the old machine. Occasionally some newer game do have some strange packed structure, it's very rare. The extra time and number of search required to converge is simply not going to give you much benefit and sometime you are going to end up with a large collection no matter how many time you search.
Gut feel, u32 covers 80% of the games. u32+float+double probably >95%.