Hello Kitty Island Adventure [010027901C89C000]

  • Thread starter Thread starter morarin
  • Start date Start date
  • Views Views 3,775
  • Replies Replies 22
  • Likes Likes 10
The test was successful, and the flower was obtained.

To achieve the Troweled state, which section of code needs to be modified?

Yes. I expected Plucked alone might not be enough, but the cheat file is already close to Atmosphère's size limit, so I could not include separate Troweled and Seed versions for all 25 flowers.

The flower state is set at 0x083BBDFC:

Code:
0x71083BBDFC: MOV W8, #GrowState

GrowState values:
Code:
Seed = 0
Plucked = 6
Troweled = 7

The current Plucked version is:

Code:
0x71083BBDFC: MOV W8, #6

08000000 083BBDFC 29025808 528000C8

For Troweled, change it to:

Code:
0x71083BBDFC: MOV W8, #7

08000000 083BBDFC 29025808 528000E8

For Seed, change it to:

Code:
0x71083BBDFC: MOV W8, #0

08000000 083BBDFC 29025808 52800008

The same instruction is used in all 25 flower codes.
 
  • Like
Reactions: RickHuangs
Yes. I expected Plucked alone might not be enough, but the cheat file is already close to Atmosphère's size limit, so I could not include separate Troweled and Seed versions for all 25 flowers.

The flower state is set at 0x083BBDFC:

Code:
0x71083BBDFC: MOV W8, #GrowState

GrowState values:
Code:
Seed = 0
Plucked = 6
Troweled = 7

The current Plucked version is:

Code:
0x71083BBDFC: MOV W8, #6

08000000 083BBDFC 29025808 528000C8

For Troweled, change it to:

Code:
0x71083BBDFC: MOV W8, #7

08000000 083BBDFC 29025808 528000E8

For Seed, change it to:

Code:
0x71083BBDFC: MOV W8, #0

08000000 083BBDFC 29025808 52800008

The same instruction is used in all 25 flower codes.
Success! However, too many flowers will slow down the game.
 
  • Like
Reactions: morarin
Success! However, too many flowers will slow down the game.

That makes sense. With this many unique flower entries, I would not recommend obtaining all of them for normal play. Even if the inventory is filtered to show fewer flowers, the game still has to load and process the full inventory data first, so a very large number of flower variations can increase loading time and reduce performance. For practical use, I think the Flower Generator is still the better option, since it lets you add only the specific flowers you actually want. These GetAll codes are mainly useful for testing or for users who specifically want a complete set.
 

Site & Scene News

Popular threads in this forum