Disney Dreamlight Valley [0100D39012C1A000]

  • Thread starter Thread starter morarin
  • Start date Start date
  • Views Views 35,454
  • Replies Replies 218
  • Likes Likes 35
Right now, the only cheats confirmed to crash are GetAllFurniture and GetAllCompanion. GetAllMount didn't crash, but since I ran it on a save that already had everything unlocked, I’m not 100% sure if it actually works. I confirmed that all other 'GetAll' cheats (besides these three) worked perfectly without crashing.

Regarding Vanellope, I plan to create a new account to test it. I used to have a save file from before her quest, but I deleted it because the auto-update tool seemed to be working fine. Since I have to play from the very beginning now, I expect it will take a little time.

I really appreciate your report.
Post automatically merged:

I fixed GetAllCompanion. I've confirmed it works.
It works, the mount one. I used it for Sven as soon as I unlocked Pegasus, the. I didn’t have to worry about quests breaking
 
  • Like
Reactions: morarin
Right now, the only cheats confirmed to crash are GetAllFurniture and GetAllCompanion. GetAllMount didn't crash, but since I ran it on a save that already had everything unlocked, I’m not 100% sure if it actually works. I confirmed that all other 'GetAll' cheats (besides these three) worked perfectly without crashing.

Regarding Vanellope, I plan to create a new account to test it. I used to have a save file from before her quest, but I deleted it because the auto-update tool seemed to be working fine. Since I have to play from the very beginning now, I expect it will take a little time.

I really appreciate your report.
Post automatically merged:

I fixed GetAllCompanion. I've confirmed it works.
I actually found a previous save from just before the vanellope quest. The code to unlock her doesn't work on that one, either.
 
  • Like
Reactions: morarin
The GetAllFurniture cheat code I released for the latest version was originally designed to add 99 units of any furniture where the player owned 99 or less. The 'indiscriminate' version of the cheat, which skips this ownership check and simply adds 99 of everything, worked without any issues. Personally, I prefer to avoid cheats that increase quantities endlessly due to the risk of overflow. However, since this script only adds 99 items at a time, there is effectively no risk of overflow unless it's executed an absurd number of times. So, adopting the indiscriminate version might be acceptable in this case. I still want to try and create a version that includes the ownership check, but for now, I am posting the version that adds items indiscriminately.

[AddAllFurniture x99]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 52800081
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800C62
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0
Post automatically merged:

I have created a cheat code that sets the quantity of all furniture items in the game to 999. If you already own more than 999 of an item, it will be skipped. I think 99 is usually enough, but since you might need more than that for paths and fences, I set it to 999 so you don't have to buy more.

[GetAllFurniture]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF57F4
04000000 084B2394 A9BF5FF6
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 52800081
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A97
04000000 084B23C0 F9405268
04000000 084B23C4 F9401500
04000000 084B23C8 B9401AE1
04000000 084B23CC AA1F03E2
04000000 084B23D0 972B178C
04000000 084B23D4 52807CE2
04000000 084B23D8 6B000042
04000000 084B23DC 540000AD
04000000 084B23E0 AA1303E0
04000000 084B23E4 B9401AE1
04000000 084B23E8 AA1F03E3
04000000 084B23EC 97436D01
04000000 084B23F0 110006D6
04000000 084B23F4 6B1502DF
04000000 084B23F8 54FFFE23
04000000 084B23FC A8C15FF6
04000000 084B2400 A8C157F4
04000000 084B2404 A8C17BF3
04000000 084B2408 AA1303E0
04000000 084B240C D65F03C0

Code:
// ============================================================================
// Wardrobe "Grant All <ItemType> up to 999 Copies (with possession check)"
//
// - Hooks Mdl.Ui.WardrobeMenu::OnFocusIn at the original "MOV X0, X19".
// - Calls Mdl.Missions.MissionManager.get_MetaClient() to get Client*.
// - Uses ItemDatabase.GetAllByType(ItemType) to enumerate all target items.
// - For each item:
//     Client.profile_ -> Profile.player_ to obtain ProfilePlayer*,
//     calls ProfilePlayer.GetItemAmount(itemId, null) to get current amount,
//     computes diff = 999 - currentAmount,
//     and calls Client.DebugAddItem(itemId, diff, CancellationToken.None)
//     only if diff > 0 (i.e., currentAmount < 999).
// - Dev check for DebugAddItem is NOPed.
// ============================================================================

// --- [Block A] Hook (OnFocusIn) ----------------------------------------------
// Original at 0x71073D582C:
//   0x71073D582C    MOV   X0, X19
//
// Patched:
0x71073D582C    BL    0x71084B238C                  // hook into code cave

// --- [Block B] Dev-flag check bypass ----------------------------------------
// Original at 0x710489AB94:
//   0x710489AB94    CBZ   W8, loc_710489ABCC
//
// Patched:
0x710489AB94    NOP                                 // always follow "dev allowed" path

// --- [Block C] Code cave (0x71084B238C) --------------------------------------
//
// External symbols:
//   Mdl.Missions.MissionManager.get_MetaClient()               0x71033352C0
//   ItemDatabase.get_Instance()                                0x71045F3FC0
//   ItemDatabase.GetAllByType(ItemType, object)                0x71045EEF60
//   ProfilePlayer.GetItemAmount(Item, ItemState)               0x7104F78200  // wrapper
//   Meta.Online.Client.DebugAddItem(int,int,CancellationToken) 0x710558D7F0
//
// Field offsets:
//   Client.profile_   at [Client + 0xA0] -> Profile*
//   Profile.player_   at [Profile + 0x28] -> ProfilePlayer*
//   List<T>._size     at [list + 0x18]   (int)
//   List<T>._items    at [list + 0x20]   (T*[])
//   ItemData.id       at [itemData + 0x18] (int)

// Prologue: save callee-saved registers
0x71084B238C    STP   X19, X30, [SP, #-0x10]!       // save X19, LR
0x71084B2390    STP   X20, X21, [SP, #-0x10]!       // save X20, X21
0x71084B2394    STP   X22, X23, [SP, #-0x10]!       // save X22, X23
// Step 1: get MetaClient (Client*)
0x71084B2398    BL    0x71033352C0                  // Mdl.Missions.MissionManager.get_MetaClient() -> X0 (Client*)
0x71084B239C    MOV   X19, X0                       // X19 = Client*
// Step 2: ItemDatabase.GetAllByType(ItemType, null)
0x71084B23A0    BL    0x71045F3FC0                  // ItemDatabase.get_Instance() -> X0
0x71084B23A4    MOV   W1,  #4                       // W1 = ItemType (4 = Furniture)
0x71084B23A8    MOV   X2,  XZR                      // X2 = null (predicate/filter)
0x71084B23AC    BL    0x71045EEF60                  // GetAllByType(type, null) -> X0 (List<*>*)
// List<T> layout: _size at +0x18, _items at +0x20
0x71084B23B0    ADD   X20, X0, #0x20                // X20 = &items[0] (T*[] base)
0x71084B23B4    LDR   W21, [X0, #0x18]              // W21 = items.Count
0x71084B23B8    MOV   W22, #0                       // W22 = i = 0
// --- Loop: for (i = 0; i < count; ++i) --------------------------------------
0x71084B23BC    LDR   X23, [X20, X22, LSL #3]       // X23 = item data object* at index i
// Step 3: call ProfilePlayer.GetItemAmount(itemId, null)
//   int GetItemAmount(ProfilePlayer* this, Item item, ItemState* state)
//
//   - this  : ProfilePlayer* = Profile.player_
//   - item  : W1 = itemId (= [X23 + 0x18])
//   - state : X2 = null
0x71084B23C0    LDR   X8,  [X19, #0xA0]             // X8  = Client.profile_ (Profile*)
0x71084B23C4    LDR   X0,  [X8,  #0x28]             // X0  = Profile.player_ (ProfilePlayer* = this)
0x71084B23C8    LDR   W1,  [X23, #0x18]             // W1  = itemId
0x71084B23CC    MOV   X2,  XZR                      // X2  = state = null
// X3 (MethodInfo*) is ignored by this wrapper; leave as-is
0x71084B23D0    BL    0x7104F78200                  // ProfilePlayer.GetItemAmount(item, state) -> W0 = currentAmount
// Step 4: compute diff = 999 - currentAmount into W2 using SUBS
//   W2 = targetMax - currentAmount
//   If W2 <= 0, skip DebugAddItem (already have 999 or more).
0x71084B23D4    MOV   W2, #999                      // W2 = targetMax (upper limit: 999)
0x71084B23D8    SUBS  W2, W2, W0                    // W2 = targetMax - currentAmount, set flags
0x71084B23DC    BLE   0x71084B23F0                  // if (W2 <= 0) -> skip adding and go to next item
// Step 5: if diff > 0, call DebugAddItem(itemId, diff, CancellationToken.None)
//   - this   : X0 = Client*
//   - itemId : W1 = [X23 + 0x18]
//   - amount : W2 = diff
//   - token  : X3 = 0
0x71084B23E0    MOV   X0, X19                       // X0 = Client*
0x71084B23E4    LDR   W1, [X23, #0x18]              // W1 = itemId
0x71084B23E8    MOV   X3, XZR                       // X3 = CancellationToken.None (0)
0x71084B23EC    BL    0x710558D7F0                  // Client.DebugAddItem(itemId, diff, 0)
// --- Loop counter update & condition check ---
0x71084B23F0    ADD   W22, W22, #1                  // i++
0x71084B23F4    CMP   W22, W21                      // i < count ?
0x71084B23F8    B.LO  0x71084B23BC                  // if (i < count) goto loop start
// --- Epilogue: restore registers & emulate original "MOV X0, X19" -----------
0x71084B23FC    LDP   X22, X23, [SP], #0x10         // restore X22, X23
0x71084B2400    LDP   X20, X21, [SP], #0x10         // restore X20, X21
0x71084B2404    LDP   X19, X30, [SP], #0x10         // restore X19, LR
0x71084B2408    MOV   X0, X19                       // emulate original "MOV X0, X19"
0x71084B240C    RET                                 // return to OnFocusIn, as if MOV X0,X19 had just run

// --- [Block D] Reference addresses ------------------------------------------
// Hook site:    Mdl.Ui.WardrobeMenu::OnFocusIn "MOV X0, X19"            0x71073D582C
// Code cave:    possession-checked GrantAll implementation              0x71084B238C
// Dev check:    CBZ W8, loc_710489ABCC (patched to NOP)                0x710489AB94
//
// get_MetaClient() (Mdl.Missions.MissionManager.get_MetaClient)        0x71033352C0
// ItemDatabase.get_Instance()                                          0x71045F3FC0
// ItemDatabase.GetAllByType(ItemType, object)                          0x71045EEF60
// ProfilePlayer.GetItemAmount(Item, ItemState)                         0x7104F78200
// Meta.Online.Client.DebugAddItem(int,int,CancellationToken)           0x710558D7F0
//
// Client.profile_    field offset                                      +0xA0
// Profile.player_    field offset                                      +0x28
// List<T>._size      field offset                                      +0x18
// List<T>._items     field offset                                      +0x20
// ItemData.id        field offset                                      +0x18
Post automatically merged:

Just to be sure, here is the proper way to use the "GetAll" cheat codes:

  1. Enable one "GetAll" cheat code (You cannot use multiple GetAll codes simultaneously).
  2. Open the Wardrobe.
  3. Press the HOME button to return to the Home Menu, then press the A button to return to the game.
  4. A spinning loading icon will appear in the center of the screen while the process completes.
  5. Once the loading icon disappears, disable the cheat code from Step 1 and close the Wardrobe.
Post automatically merged:

I actually found a previous save from just before the vanellope quest. The code to unlock her doesn't work on that one, either.

fixed.

[WelcomeVanellope]
04000000 03342B60 B4FE3781
04000000 03342B64 1545BE0A
04000000 084B238C B9402028
04000000 084B2390 7100051F
04000000 084B2394 544675E1
04000000 084B2398 A9BF7BF3
04000000 084B239C A9BF57F4
04000000 084B23A0 A9BF5FF6
04000000 084B23A4 A9BF67F8
04000000 084B23A8 A9BF6FFA
04000000 084B23AC AA0003F3
04000000 084B23B0 F9400C28
04000000 084B23B4 B9401914
04000000 084B23B8 96BA33A6
04000000 084B23BC 96BA0BF9
04000000 084B23C0 F9401800
04000000 084B23C4 2A1403E1
04000000 084B23C8 AA1F03E2
04000000 084B23CC 972BE5B1
04000000 084B23D0 AA0003F4
04000000 084B23D4 9749EA83
04000000 084B23D8 F9400C08
04000000 084B23DC F9400908
04000000 084B23E0 B9401915
04000000 084B23E4 F9400909
04000000 084B23E8 91008137
04000000 084B23EC 52800016
04000000 084B23F0 6B1502DF
04000000 084B23F4 5400042A
04000000 084B23F8 F8767AEA
04000000 084B23FC F9400D4B
04000000 084B2400 F940096B
04000000 084B2404 B9401978
04000000 084B2408 F940096C
04000000 084B240C 9100819A
04000000 084B2410 52800019
04000000 084B2414 6B18033F
04000000 084B2418 540002CA
04000000 084B241C F8797B40
04000000 084B2420 B9402801
04000000 084B2424 7100043F
04000000 084B2428 54000060
04000000 084B242C 7100083F
04000000 084B2430 540001C1
04000000 084B2434 F940400D
04000000 084B2438 B94049A1
04000000 084B243C 71033C3F
04000000 084B2440 540000A0
04000000 084B2444 7102303F
04000000 084B2448 54000101
04000000 084B244C 528001C1
04000000 084B2450 14000002
04000000 084B2454 528001A1
04000000 084B2458 F94019A3
04000000 084B245C AA1403E2
04000000 084B2460 AA1303E0
04000000 084B2464 96BA4137
04000000 084B2468 11000739
04000000 084B246C 17FFFFEA
04000000 084B2470 110006D6
04000000 084B2474 17FFFFDF
04000000 084B2478 A8C16FFA
04000000 084B247C A8C167F8
04000000 084B2480 A8C15FF6
04000000 084B2484 A8C157F4
04000000 084B2488 A8C17BF3
04000000 084B248C D65F03C0

Code:
// Hook point: Mdl.Missions.MissionManager$$OnTrackedMissionChanged
// Absolute Address: Base + 0x3342B60
// (Original instruction was: B Mdl.Missions.MissionManager$$RefreshCurrentFollower)

// Hook Code (at 0x7103342B60)
0x7103342B60    CBZ X1, 0x710333F250                 // TrackedActivity == NULL? -> Jump to RefreshCurrentFollower (Original target)
0x7103342B64    B   0x71084B238C                     // Jump to new Code Cave

// --- Code Cave Start --- (Address: 0x71084B238C)
0x71084B238C    LDR W8, [X1, #0x20]                  // Read ActivityCase (Offset 0x20 confirmed)
0x71084B2390    CMP W8, #1                           // ActivityCase == Mission (1) ?
0x71084B2394    B.NE 0x710333F250                    // Not Mission -> Jump to RefreshCurrentFollower

// Prologue
0x71084B2398    STP X19, X30, [SP, #-0x10]!
0x71084B239C    STP X20, X21, [SP, #-0x10]!
0x71084B23A0    STP X22, X23, [SP, #-0x10]!
0x71084B23A4    STP X24, X25, [SP, #-0x10]!
0x71084B23A8    STP X26, X27, [SP, #-0x10]!

0x71084B23AC    MOV X19, X0                           // X19 <- MissionManager* (this)
0x71084B23B0    LDR X8,  [X1, #0x18]                  // TrackedActivity.TrackedMission* (Offset 0x18 confirmed)
0x71084B23B4    LDR W20, [X8, #0x18]                  // missionId (Offset 0x18 confirmed)

// Call MissionManager.RefreshCurrentFollower (RVA: 0x333F250)
0x71084B23B8    BL  0x710333F250

// Call MissionManager.get_Profile (RVA: 0x33353A0)
0x71084B23BC    BL  0x71033353A0
0x71084B23C0    LDR X0, [X0, #0x30]                   // X0 <- ProfileWorld* (Offset 0x30 confirmed)

0x71084B23C4    MOV W1, W20                           // arg1: missionId (int passed as Item struct)
0x71084B23C8    MOV X2, XZR                           // arg2: predicate = NULL
// Call ProfileWorld.GetMissionSlot (RVA: 0x4FABA90)
0x71084B23CC    BL  0x7104FABA90
0x71084B23D0    MOV X20, X0                           // Keep MissionSlot* in X20

// Call MissionSlot.get_CurrentStep (RVA: 0x572CDE0)
0x71084B23D4    BL  0x710572CDE0                      // X0 <- MissionStep*

// MissionStep.SubSteps (Offset 0x18 confirmed in MissionStep.cs)
0x71084B23D8    LDR X8,  [X0, #0x18]                  // RepeatedField<MissionSubStep>*
0x71084B23DC    LDR X8,  [X8, #0x10]                  // List<MissionSubStep>* (IL2CPP internal)
0x71084B23E0    LDR W21, [X8, #0x18]                  // W21 <- subStepCount
0x71084B23E4    LDR X9,  [X8, #0x10]                  // _items (Il2CppArray*)
0x71084B23E8    ADD X23, X9, #0x20                    // X23 <- subSteps data base
0x71084B23EC    MOV W22, #0                           // i = 0

// ===== Outer loop over SubSteps =====
0x71084B23F0    CMP W22, W21
0x71084B23F4    B.GE 0x71084B2478                     // i >= subStepCount -> Epilogue

0x71084B23F8    LDR X10, [X23, X22, LSL #3]           // X10 <- MissionSubStep*
// MissionSubStep.Objectives (Offset 0x18 confirmed)
0x71084B23FC    LDR X11, [X10, #0x18]                 // RepeatedField<MissionObjective>*
0x71084B2400    LDR X11, [X11, #0x10]                 // List<MissionObjective>*
0x71084B2404    LDR W24, [X11, #0x18]                 // W24 <- objectiveCount
0x71084B2408    LDR X12, [X11, #0x10]                 // _items
0x71084B240C    ADD X26, X12, #0x20                   // X26 <- objectives data base
0x71084B2410    MOV W25, #0                           // j = 0

// —— Inner loop over Objectives ——
0x71084B2414    CMP W25, W24
0x71084B2418    B.GE 0x71084B2470                     // j >= objectiveCount -> next SubStep

0x71084B241C    LDR X0, [X26, X25, LSL #3]            // X0 <- MissionObjective*

// [UPDATE] MissionObjective.status_ Offset: 0x28
0x71084B2420    LDR W1, [X0, #0x28]                   // W1 <- status_
0x71084B2424    CMP W1, #1                            // status == Ongoing(1) ?
0x71084B2428    B.EQ 0x71084B2434                     // yes -> check step case
0x71084B242C    CMP W1, #2                            // status == ReadyToBeCompleted(2) ?
0x71084B2430    B.NE 0x71084B2468                     // no -> skip (j++)

// [UPDATE] MissionObjective.Data Offset: 0x80
0x71084B2434    LDR X13, [X0, #0x80]                  // X13 <- MissionObjectiveData*
// MissionObjectiveData.customStepCase_ (Offset 0x48 confirmed)
0x71084B2438    LDR W1,  [X13, #0x48]                 // W1 <- customStepCase
0x71084B243C    CMP W1, #207                          // MenuAction(207) ?
0x71084B2440    B.EQ 0x71084B2454                     // yes -> set Condition=13
0x71084B2444    CMP W1, #140                          // DesignChallenge(140) ?
0x71084B2448    B.NE 0x71084B2468                     // no -> skip
0x71084B244C    MOV W1, #14                           // Condition = 14 (ForceSkipDesignChallenge)
0x71084B2450    B   0x71084B2458

0x71084B2454    MOV W1, #13                           // Condition = 13 (MenuAction)
// MissionObjectiveData.stepName_ (Offset 0x30 confirmed)
0x71084B2458    LDR X3, [X13, #0x30]                  // X3 <- stepName
0x71084B245C    MOV X2, X20                           // X2 <- missionSlot*
0x71084B2460    MOV X0, X19                           // X0 <- this (MissionManager*)
// Call MissionManager.CheckForAdvanceStep (RVA: 0x3342940)
0x71084B2464    BL  0x7103342940

// Advance inner loop
0x71084B2468    ADD W25, W25, #1                      // j++
0x71084B246C    B   0x71084B2414                      // loop back

// Advance outer loop
0x71084B2470    ADD W22, W22, #1                      // i++
0x71084B2474    B   0x71084B23F0                      // loop back

// ==== Epilogue ====
0x71084B2478    LDP X26, X27, [SP], #0x10
0x71084B247C    LDP X24, X25, [SP], #0x10
0x71084B2480    LDP X22, X23, [SP], #0x10
0x71084B2484    LDP X20, X21, [SP], #0x10
0x71084B2488    LDP X19, X30, [SP], #0x10
0x71084B248C    RET
 
Last edited by morarin,
The GetAllFurniture cheat code I released for the latest version was originally designed to add 99 units of any furniture where the player owned 99 or less. The 'indiscriminate' version of the cheat, which skips this ownership check and simply adds 99 of everything, worked without any issues. Personally, I prefer to avoid cheats that increase quantities endlessly due to the risk of overflow. However, since this script only adds 99 items at a time, there is effectively no risk of overflow unless it's executed an absurd number of times. So, adopting the indiscriminate version might be acceptable in this case. I still want to try and create a version that includes the ownership check, but for now, I am posting the version that adds items indiscriminately.

[AddAllFurniture x99]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 52800081
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800C62
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0
Post automatically merged:

I have created a cheat code that sets the quantity of all furniture items in the game to 999. If you already own more than 999 of an item, it will be skipped. I think 99 is usually enough, but since you might need more than that for paths and fences, I set it to 999 so you don't have to buy more.

[GetAllFurniture]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF57F4
04000000 084B2394 A9BF5FF6
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 52800081
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A97
04000000 084B23C0 F9405268
04000000 084B23C4 F9401500
04000000 084B23C8 B9401AE1
04000000 084B23CC AA1F03E2
04000000 084B23D0 972B178C
04000000 084B23D4 52807CE2
04000000 084B23D8 6B000042
04000000 084B23DC 540000AD
04000000 084B23E0 AA1303E0
04000000 084B23E4 B9401AE1
04000000 084B23E8 AA1F03E3
04000000 084B23EC 97436D01
04000000 084B23F0 110006D6
04000000 084B23F4 6B1502DF
04000000 084B23F8 54FFFE23
04000000 084B23FC A8C15FF6
04000000 084B2400 A8C157F4
04000000 084B2404 A8C17BF3
04000000 084B2408 AA1303E0
04000000 084B240C D65F03C0

Code:
// ============================================================================
// Wardrobe "Grant All <ItemType> up to 999 Copies (with possession check)"
//
// - Hooks Mdl.Ui.WardrobeMenu::OnFocusIn at the original "MOV X0, X19".
// - Calls Mdl.Missions.MissionManager.get_MetaClient() to get Client*.
// - Uses ItemDatabase.GetAllByType(ItemType) to enumerate all target items.
// - For each item:
//     Client.profile_ -> Profile.player_ to obtain ProfilePlayer*,
//     calls ProfilePlayer.GetItemAmount(itemId, null) to get current amount,
//     computes diff = 999 - currentAmount,
//     and calls Client.DebugAddItem(itemId, diff, CancellationToken.None)
//     only if diff > 0 (i.e., currentAmount < 999).
// - Dev check for DebugAddItem is NOPed.
// ============================================================================

// --- [Block A] Hook (OnFocusIn) ----------------------------------------------
// Original at 0x71073D582C:
//   0x71073D582C    MOV   X0, X19
//
// Patched:
0x71073D582C    BL    0x71084B238C                  // hook into code cave

// --- [Block B] Dev-flag check bypass ----------------------------------------
// Original at 0x710489AB94:
//   0x710489AB94    CBZ   W8, loc_710489ABCC
//
// Patched:
0x710489AB94    NOP                                 // always follow "dev allowed" path

// --- [Block C] Code cave (0x71084B238C) --------------------------------------
//
// External symbols:
//   Mdl.Missions.MissionManager.get_MetaClient()               0x71033352C0
//   ItemDatabase.get_Instance()                                0x71045F3FC0
//   ItemDatabase.GetAllByType(ItemType, object)                0x71045EEF60
//   ProfilePlayer.GetItemAmount(Item, ItemState)               0x7104F78200  // wrapper
//   Meta.Online.Client.DebugAddItem(int,int,CancellationToken) 0x710558D7F0
//
// Field offsets:
//   Client.profile_   at [Client + 0xA0] -> Profile*
//   Profile.player_   at [Profile + 0x28] -> ProfilePlayer*
//   List<T>._size     at [list + 0x18]   (int)
//   List<T>._items    at [list + 0x20]   (T*[])
//   ItemData.id       at [itemData + 0x18] (int)

// Prologue: save callee-saved registers
0x71084B238C    STP   X19, X30, [SP, #-0x10]!       // save X19, LR
0x71084B2390    STP   X20, X21, [SP, #-0x10]!       // save X20, X21
0x71084B2394    STP   X22, X23, [SP, #-0x10]!       // save X22, X23
// Step 1: get MetaClient (Client*)
0x71084B2398    BL    0x71033352C0                  // Mdl.Missions.MissionManager.get_MetaClient() -> X0 (Client*)
0x71084B239C    MOV   X19, X0                       // X19 = Client*
// Step 2: ItemDatabase.GetAllByType(ItemType, null)
0x71084B23A0    BL    0x71045F3FC0                  // ItemDatabase.get_Instance() -> X0
0x71084B23A4    MOV   W1,  #4                       // W1 = ItemType (4 = Furniture)
0x71084B23A8    MOV   X2,  XZR                      // X2 = null (predicate/filter)
0x71084B23AC    BL    0x71045EEF60                  // GetAllByType(type, null) -> X0 (List<*>*)
// List<T> layout: _size at +0x18, _items at +0x20
0x71084B23B0    ADD   X20, X0, #0x20                // X20 = &items[0] (T*[] base)
0x71084B23B4    LDR   W21, [X0, #0x18]              // W21 = items.Count
0x71084B23B8    MOV   W22, #0                       // W22 = i = 0
// --- Loop: for (i = 0; i < count; ++i) --------------------------------------
0x71084B23BC    LDR   X23, [X20, X22, LSL #3]       // X23 = item data object* at index i
// Step 3: call ProfilePlayer.GetItemAmount(itemId, null)
//   int GetItemAmount(ProfilePlayer* this, Item item, ItemState* state)
//
//   - this  : ProfilePlayer* = Profile.player_
//   - item  : W1 = itemId (= [X23 + 0x18])
//   - state : X2 = null
0x71084B23C0    LDR   X8,  [X19, #0xA0]             // X8  = Client.profile_ (Profile*)
0x71084B23C4    LDR   X0,  [X8,  #0x28]             // X0  = Profile.player_ (ProfilePlayer* = this)
0x71084B23C8    LDR   W1,  [X23, #0x18]             // W1  = itemId
0x71084B23CC    MOV   X2,  XZR                      // X2  = state = null
// X3 (MethodInfo*) is ignored by this wrapper; leave as-is
0x71084B23D0    BL    0x7104F78200                  // ProfilePlayer.GetItemAmount(item, state) -> W0 = currentAmount
// Step 4: compute diff = 999 - currentAmount into W2 using SUBS
//   W2 = targetMax - currentAmount
//   If W2 <= 0, skip DebugAddItem (already have 999 or more).
0x71084B23D4    MOV   W2, #999                      // W2 = targetMax (upper limit: 999)
0x71084B23D8    SUBS  W2, W2, W0                    // W2 = targetMax - currentAmount, set flags
0x71084B23DC    BLE   0x71084B23F0                  // if (W2 <= 0) -> skip adding and go to next item
// Step 5: if diff > 0, call DebugAddItem(itemId, diff, CancellationToken.None)
//   - this   : X0 = Client*
//   - itemId : W1 = [X23 + 0x18]
//   - amount : W2 = diff
//   - token  : X3 = 0
0x71084B23E0    MOV   X0, X19                       // X0 = Client*
0x71084B23E4    LDR   W1, [X23, #0x18]              // W1 = itemId
0x71084B23E8    MOV   X3, XZR                       // X3 = CancellationToken.None (0)
0x71084B23EC    BL    0x710558D7F0                  // Client.DebugAddItem(itemId, diff, 0)
// --- Loop counter update & condition check ---
0x71084B23F0    ADD   W22, W22, #1                  // i++
0x71084B23F4    CMP   W22, W21                      // i < count ?
0x71084B23F8    B.LO  0x71084B23BC                  // if (i < count) goto loop start
// --- Epilogue: restore registers & emulate original "MOV X0, X19" -----------
0x71084B23FC    LDP   X22, X23, [SP], #0x10         // restore X22, X23
0x71084B2400    LDP   X20, X21, [SP], #0x10         // restore X20, X21
0x71084B2404    LDP   X19, X30, [SP], #0x10         // restore X19, LR
0x71084B2408    MOV   X0, X19                       // emulate original "MOV X0, X19"
0x71084B240C    RET                                 // return to OnFocusIn, as if MOV X0,X19 had just run

// --- [Block D] Reference addresses ------------------------------------------
// Hook site:    Mdl.Ui.WardrobeMenu::OnFocusIn "MOV X0, X19"            0x71073D582C
// Code cave:    possession-checked GrantAll implementation              0x71084B238C
// Dev check:    CBZ W8, loc_710489ABCC (patched to NOP)                0x710489AB94
//
// get_MetaClient() (Mdl.Missions.MissionManager.get_MetaClient)        0x71033352C0
// ItemDatabase.get_Instance()                                          0x71045F3FC0
// ItemDatabase.GetAllByType(ItemType, object)                          0x71045EEF60
// ProfilePlayer.GetItemAmount(Item, ItemState)                         0x7104F78200
// Meta.Online.Client.DebugAddItem(int,int,CancellationToken)           0x710558D7F0
//
// Client.profile_    field offset                                      +0xA0
// Profile.player_    field offset                                      +0x28
// List<T>._size      field offset                                      +0x18
// List<T>._items     field offset                                      +0x20
// ItemData.id        field offset                                      +0x18
Post automatically merged:

Just to be sure, here is the proper way to use the "GetAll" cheat codes:

  1. Enable one "GetAll" cheat code (You cannot use multiple GetAll codes simultaneously).
  2. Open the Wardrobe.
  3. Press the HOME button to return to the Home Menu, then press the A button to return to the game.
  4. A spinning loading icon will appear in the center of the screen while the process completes.
  5. Once the loading icon disappears, disable the cheat code from Step 1 and close the Wardrobe.
Post automatically merged:



fixed.

[WelcomeVanellope]
04000000 03342B60 B4FE3781
04000000 03342B64 1545BE0A
04000000 084B238C B9402028
04000000 084B2390 7100051F
04000000 084B2394 544675E1
04000000 084B2398 A9BF7BF3
04000000 084B239C A9BF57F4
04000000 084B23A0 A9BF5FF6
04000000 084B23A4 A9BF67F8
04000000 084B23A8 A9BF6FFA
04000000 084B23AC AA0003F3
04000000 084B23B0 F9400C28
04000000 084B23B4 B9401914
04000000 084B23B8 96BA33A6
04000000 084B23BC 96BA0BF9
04000000 084B23C0 F9401800
04000000 084B23C4 2A1403E1
04000000 084B23C8 AA1F03E2
04000000 084B23CC 972BE5B1
04000000 084B23D0 AA0003F4
04000000 084B23D4 9749EA83
04000000 084B23D8 F9400C08
04000000 084B23DC F9400908
04000000 084B23E0 B9401915
04000000 084B23E4 F9400909
04000000 084B23E8 91008137
04000000 084B23EC 52800016
04000000 084B23F0 6B1502DF
04000000 084B23F4 5400042A
04000000 084B23F8 F8767AEA
04000000 084B23FC F9400D4B
04000000 084B2400 F940096B
04000000 084B2404 B9401978
04000000 084B2408 F940096C
04000000 084B240C 9100819A
04000000 084B2410 52800019
04000000 084B2414 6B18033F
04000000 084B2418 540002CA
04000000 084B241C F8797B40
04000000 084B2420 B9402801
04000000 084B2424 7100043F
04000000 084B2428 54000060
04000000 084B242C 7100083F
04000000 084B2430 540001C1
04000000 084B2434 F940400D
04000000 084B2438 B94049A1
04000000 084B243C 71033C3F
04000000 084B2440 540000A0
04000000 084B2444 7102303F
04000000 084B2448 54000101
04000000 084B244C 528001C1
04000000 084B2450 14000002
04000000 084B2454 528001A1
04000000 084B2458 F94019A3
04000000 084B245C AA1403E2
04000000 084B2460 AA1303E0
04000000 084B2464 96BA4137
04000000 084B2468 11000739
04000000 084B246C 17FFFFEA
04000000 084B2470 110006D6
04000000 084B2474 17FFFFDF
04000000 084B2478 A8C16FFA
04000000 084B247C A8C167F8
04000000 084B2480 A8C15FF6
04000000 084B2484 A8C157F4
04000000 084B2488 A8C17BF3
04000000 084B248C D65F03C0

Code:
// Hook point: Mdl.Missions.MissionManager$$OnTrackedMissionChanged
// Absolute Address: Base + 0x3342B60
// (Original instruction was: B Mdl.Missions.MissionManager$$RefreshCurrentFollower)

// Hook Code (at 0x7103342B60)
0x7103342B60    CBZ X1, 0x710333F250                 // TrackedActivity == NULL? -> Jump to RefreshCurrentFollower (Original target)
0x7103342B64    B   0x71084B238C                     // Jump to new Code Cave

// --- Code Cave Start --- (Address: 0x71084B238C)
0x71084B238C    LDR W8, [X1, #0x20]                  // Read ActivityCase (Offset 0x20 confirmed)
0x71084B2390    CMP W8, #1                           // ActivityCase == Mission (1) ?
0x71084B2394    B.NE 0x710333F250                    // Not Mission -> Jump to RefreshCurrentFollower

// Prologue
0x71084B2398    STP X19, X30, [SP, #-0x10]!
0x71084B239C    STP X20, X21, [SP, #-0x10]!
0x71084B23A0    STP X22, X23, [SP, #-0x10]!
0x71084B23A4    STP X24, X25, [SP, #-0x10]!
0x71084B23A8    STP X26, X27, [SP, #-0x10]!

0x71084B23AC    MOV X19, X0                           // X19 <- MissionManager* (this)
0x71084B23B0    LDR X8,  [X1, #0x18]                  // TrackedActivity.TrackedMission* (Offset 0x18 confirmed)
0x71084B23B4    LDR W20, [X8, #0x18]                  // missionId (Offset 0x18 confirmed)

// Call MissionManager.RefreshCurrentFollower (RVA: 0x333F250)
0x71084B23B8    BL  0x710333F250

// Call MissionManager.get_Profile (RVA: 0x33353A0)
0x71084B23BC    BL  0x71033353A0
0x71084B23C0    LDR X0, [X0, #0x30]                   // X0 <- ProfileWorld* (Offset 0x30 confirmed)

0x71084B23C4    MOV W1, W20                           // arg1: missionId (int passed as Item struct)
0x71084B23C8    MOV X2, XZR                           // arg2: predicate = NULL
// Call ProfileWorld.GetMissionSlot (RVA: 0x4FABA90)
0x71084B23CC    BL  0x7104FABA90
0x71084B23D0    MOV X20, X0                           // Keep MissionSlot* in X20

// Call MissionSlot.get_CurrentStep (RVA: 0x572CDE0)
0x71084B23D4    BL  0x710572CDE0                      // X0 <- MissionStep*

// MissionStep.SubSteps (Offset 0x18 confirmed in MissionStep.cs)
0x71084B23D8    LDR X8,  [X0, #0x18]                  // RepeatedField<MissionSubStep>*
0x71084B23DC    LDR X8,  [X8, #0x10]                  // List<MissionSubStep>* (IL2CPP internal)
0x71084B23E0    LDR W21, [X8, #0x18]                  // W21 <- subStepCount
0x71084B23E4    LDR X9,  [X8, #0x10]                  // _items (Il2CppArray*)
0x71084B23E8    ADD X23, X9, #0x20                    // X23 <- subSteps data base
0x71084B23EC    MOV W22, #0                           // i = 0

// ===== Outer loop over SubSteps =====
0x71084B23F0    CMP W22, W21
0x71084B23F4    B.GE 0x71084B2478                     // i >= subStepCount -> Epilogue

0x71084B23F8    LDR X10, [X23, X22, LSL #3]           // X10 <- MissionSubStep*
// MissionSubStep.Objectives (Offset 0x18 confirmed)
0x71084B23FC    LDR X11, [X10, #0x18]                 // RepeatedField<MissionObjective>*
0x71084B2400    LDR X11, [X11, #0x10]                 // List<MissionObjective>*
0x71084B2404    LDR W24, [X11, #0x18]                 // W24 <- objectiveCount
0x71084B2408    LDR X12, [X11, #0x10]                 // _items
0x71084B240C    ADD X26, X12, #0x20                   // X26 <- objectives data base
0x71084B2410    MOV W25, #0                           // j = 0

// —— Inner loop over Objectives ——
0x71084B2414    CMP W25, W24
0x71084B2418    B.GE 0x71084B2470                     // j >= objectiveCount -> next SubStep

0x71084B241C    LDR X0, [X26, X25, LSL #3]            // X0 <- MissionObjective*

// [UPDATE] MissionObjective.status_ Offset: 0x28
0x71084B2420    LDR W1, [X0, #0x28]                   // W1 <- status_
0x71084B2424    CMP W1, #1                            // status == Ongoing(1) ?
0x71084B2428    B.EQ 0x71084B2434                     // yes -> check step case
0x71084B242C    CMP W1, #2                            // status == ReadyToBeCompleted(2) ?
0x71084B2430    B.NE 0x71084B2468                     // no -> skip (j++)

// [UPDATE] MissionObjective.Data Offset: 0x80
0x71084B2434    LDR X13, [X0, #0x80]                  // X13 <- MissionObjectiveData*
// MissionObjectiveData.customStepCase_ (Offset 0x48 confirmed)
0x71084B2438    LDR W1,  [X13, #0x48]                 // W1 <- customStepCase
0x71084B243C    CMP W1, #207                          // MenuAction(207) ?
0x71084B2440    B.EQ 0x71084B2454                     // yes -> set Condition=13
0x71084B2444    CMP W1, #140                          // DesignChallenge(140) ?
0x71084B2448    B.NE 0x71084B2468                     // no -> skip
0x71084B244C    MOV W1, #14                           // Condition = 14 (ForceSkipDesignChallenge)
0x71084B2450    B   0x71084B2458

0x71084B2454    MOV W1, #13                           // Condition = 13 (MenuAction)
// MissionObjectiveData.stepName_ (Offset 0x30 confirmed)
0x71084B2458    LDR X3, [X13, #0x30]                  // X3 <- stepName
0x71084B245C    MOV X2, X20                           // X2 <- missionSlot*
0x71084B2460    MOV X0, X19                           // X0 <- this (MissionManager*)
// Call MissionManager.CheckForAdvanceStep (RVA: 0x3342940)
0x71084B2464    BL  0x7103342940

// Advance inner loop
0x71084B2468    ADD W25, W25, #1                      // j++
0x71084B246C    B   0x71084B2414                      // loop back

// Advance outer loop
0x71084B2470    ADD W22, W22, #1                      // i++
0x71084B2474    B   0x71084B23F0                      // loop back

// ==== Epilogue ====
0x71084B2478    LDP X26, X27, [SP], #0x10
0x71084B247C    LDP X24, X25, [SP], #0x10
0x71084B2480    LDP X22, X23, [SP], #0x10
0x71084B2484    LDP X20, X21, [SP], #0x10
0x71084B2488    LDP X19, X30, [SP], #0x10
0x71084B248C    RET
Awesome, thanks! Works great! Did it change all that much?
 
  • Like
Reactions: morarin
Awesome, thanks! Works great! Did it change all that much?

If you compare the assembly code for both versions of the 'WelcomeVanellope' cheat, you'll see what I changed. First, I updated all the function addresses, including the start address for the code cave. Next, I corrected the offsets for the fields accessed directly within the code cave, as those had changed. The list layout and enum values remained the same, so no fixes were needed there.

I don't usually test this cheat code myself, so I really appreciate you reporting that it was broken. Thank you.
 
  • Like
Reactions: LoreMarqs
Thanks for continuously fixing the cheat codes. However, I still hope that the fixed and modified cheat codes can be integrated and updated on the homepage in a timely manner. Sometimes the pagination is too messy, making it unclear how to add them and prone to problems.
 
  • Like
Reactions: morarin
Thanks for continuously fixing the cheat codes. However, I still hope that the fixed and modified cheat codes can be integrated and updated on the homepage in a timely manner. Sometimes the pagination is too messy, making it unclear how to add them and prone to problems.

Whenever I fix a cheat or add a new one, I update both the post for the latest version and the first post of this thread. (In previous versions, I used to release new codes individually and only merged them during version updates. However, for 1.20.2, all fixes and additions are immediately applied to both posts.)
 
Also, about your code for having all figurines, it works great to unlock all the figurines, but it seems that if i use it before i've played scramblecoin in each location, it locks me out of opening the game/seeing what ive collected in the collections menu in those areas. weird, but you do get all the figurines to use, anyway, which is cool. Thanks, again!

[--SectionStart:EasyScramblecoin--]
00000000 00000000 00000000
[6Points]
04000000 04B449DC 1400000A
04000000 04B44A18 14000004
04000000 04B44DD8 52800008
04000000 04B44EFC 528000CB

[12Points]
04000000 04B449DC 1400000A
04000000 04B44A18 14000004
04000000 04B44DD8 52800008
04000000 04B44EFC 5280018B

[15Points]
04000000 04B449DC 1400000A
04000000 04B44A18 14000004
04000000 04B44DD8 52800008
04000000 04B44EFC 528001EB

[18Points]
04000000 04B449DC 1400000A
04000000 04B44A18 14000004
04000000 04B44DD8 52800008
04000000 04B44EFC 5280024B

[21Points]
04000000 04B449DC 1400000A
04000000 04B44A18 14000004
04000000 04B44DD8 52800008
04000000 04B44EFC 528002AB

[50Points]
04000000 04B449DC 1400000A
04000000 04B44A18 14000004
04000000 04B44DD8 52800008
04000000 04B44EFC 5280064B
[--SectionEnd:EasyScramblecoin--]
00000000 00000000 00000000

This cheat code fixes your Scramblecoin ranking points to a specified value. It allows you to earn ranking points as many times as you want against the same character on the same day. You will receive points even if you forfeit the match.

Please note that you cannot claim multiple rewards at a single time.
You need to use this code selectively based on your current ranking points.


PhaseCurrent Rank RangeRank Milestones (Next Reward)Interval (Gap)Optimal Patch Value
10 - 333, 9, 15, 24, 333 ~ 9 (Variable)6 Points
233 - 6945, 57, 6912 (Fixed)12 Points
369 - 12984, 99, 114, 12915 (Fixed)15 Points
4129 - 237147, 165, 183, 201, 219, 23718 (Fixed)18 Points
5237 - 300258, 279, 30021 (Fixed)21 Points
6300 - 550350, 400, 450, 500, 55050 (Fixed)50 Points

Post automatically merged:

Is there a code for getting like 50 when you pick up an item?

[R PickupToMax]
04000000 03A68CC0 B94017F5
04000000 03A68D98 4B1602B5
80000080
04000000 03A68CC0 2A1B03F5
04000000 03A68D98 52800015
20000000

With this cheat code, hold the R Button while picking up an item to instantly obtain a full stack. This safely adjusts to the item's limit (e.g., 50 or 99). If you already have the item, it fills your existing slot to the max.
Post automatically merged:

[GetAllCookingRecipe]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 528019A1
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800022
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0
 
Last edited by morarin,
The GetAllFurniture cheat code I released for the latest version was originally designed to add 99 units of any furniture where the player owned 99 or less. The 'indiscriminate' version of the cheat, which skips this ownership check and simply adds 99 of everything, worked without any issues. Personally, I prefer to avoid cheats that increase quantities endlessly due to the risk of overflow. However, since this script only adds 99 items at a time, there is effectively no risk of overflow unless it's executed an absurd number of times. So, adopting the indiscriminate version might be acceptable in this case. I still want to try and create a version that includes the ownership check, but for now, I am posting the version that adds items indiscriminately.

[AddAllFurniture x99]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 52800081
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800C62
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0
Post automatically merged:

I have created a cheat code that sets the quantity of all furniture items in the game to 999. If you already own more than 999 of an item, it will be skipped. I think 99 is usually enough, but since you might need more than that for paths and fences, I set it to 999 so you don't have to buy more.

[GetAllFurniture]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF57F4
04000000 084B2394 A9BF5FF6
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 52800081
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A97
04000000 084B23C0 F9405268
04000000 084B23C4 F9401500
04000000 084B23C8 B9401AE1
04000000 084B23CC AA1F03E2
04000000 084B23D0 972B178C
04000000 084B23D4 52807CE2
04000000 084B23D8 6B000042
04000000 084B23DC 540000AD
04000000 084B23E0 AA1303E0
04000000 084B23E4 B9401AE1
04000000 084B23E8 AA1F03E3
04000000 084B23EC 97436D01
04000000 084B23F0 110006D6
04000000 084B23F4 6B1502DF
04000000 084B23F8 54FFFE23
04000000 084B23FC A8C15FF6
04000000 084B2400 A8C157F4
04000000 084B2404 A8C17BF3
04000000 084B2408 AA1303E0
04000000 084B240C D65F03C0

Code:
// ============================================================================
// Wardrobe "Grant All <ItemType> up to 999 Copies (with possession check)"
//
// - Hooks Mdl.Ui.WardrobeMenu::OnFocusIn at the original "MOV X0, X19".
// - Calls Mdl.Missions.MissionManager.get_MetaClient() to get Client*.
// - Uses ItemDatabase.GetAllByType(ItemType) to enumerate all target items.
// - For each item:
//     Client.profile_ -> Profile.player_ to obtain ProfilePlayer*,
//     calls ProfilePlayer.GetItemAmount(itemId, null) to get current amount,
//     computes diff = 999 - currentAmount,
//     and calls Client.DebugAddItem(itemId, diff, CancellationToken.None)
//     only if diff > 0 (i.e., currentAmount < 999).
// - Dev check for DebugAddItem is NOPed.
// ============================================================================

// --- [Block A] Hook (OnFocusIn) ----------------------------------------------
// Original at 0x71073D582C:
//   0x71073D582C    MOV   X0, X19
//
// Patched:
0x71073D582C    BL    0x71084B238C                  // hook into code cave

// --- [Block B] Dev-flag check bypass ----------------------------------------
// Original at 0x710489AB94:
//   0x710489AB94    CBZ   W8, loc_710489ABCC
//
// Patched:
0x710489AB94    NOP                                 // always follow "dev allowed" path

// --- [Block C] Code cave (0x71084B238C) --------------------------------------
//
// External symbols:
//   Mdl.Missions.MissionManager.get_MetaClient()               0x71033352C0
//   ItemDatabase.get_Instance()                                0x71045F3FC0
//   ItemDatabase.GetAllByType(ItemType, object)                0x71045EEF60
//   ProfilePlayer.GetItemAmount(Item, ItemState)               0x7104F78200  // wrapper
//   Meta.Online.Client.DebugAddItem(int,int,CancellationToken) 0x710558D7F0
//
// Field offsets:
//   Client.profile_   at [Client + 0xA0] -> Profile*
//   Profile.player_   at [Profile + 0x28] -> ProfilePlayer*
//   List<T>._size     at [list + 0x18]   (int)
//   List<T>._items    at [list + 0x20]   (T*[])
//   ItemData.id       at [itemData + 0x18] (int)

// Prologue: save callee-saved registers
0x71084B238C    STP   X19, X30, [SP, #-0x10]!       // save X19, LR
0x71084B2390    STP   X20, X21, [SP, #-0x10]!       // save X20, X21
0x71084B2394    STP   X22, X23, [SP, #-0x10]!       // save X22, X23
// Step 1: get MetaClient (Client*)
0x71084B2398    BL    0x71033352C0                  // Mdl.Missions.MissionManager.get_MetaClient() -> X0 (Client*)
0x71084B239C    MOV   X19, X0                       // X19 = Client*
// Step 2: ItemDatabase.GetAllByType(ItemType, null)
0x71084B23A0    BL    0x71045F3FC0                  // ItemDatabase.get_Instance() -> X0
0x71084B23A4    MOV   W1,  #4                       // W1 = ItemType (4 = Furniture)
0x71084B23A8    MOV   X2,  XZR                      // X2 = null (predicate/filter)
0x71084B23AC    BL    0x71045EEF60                  // GetAllByType(type, null) -> X0 (List<*>*)
// List<T> layout: _size at +0x18, _items at +0x20
0x71084B23B0    ADD   X20, X0, #0x20                // X20 = &items[0] (T*[] base)
0x71084B23B4    LDR   W21, [X0, #0x18]              // W21 = items.Count
0x71084B23B8    MOV   W22, #0                       // W22 = i = 0
// --- Loop: for (i = 0; i < count; ++i) --------------------------------------
0x71084B23BC    LDR   X23, [X20, X22, LSL #3]       // X23 = item data object* at index i
// Step 3: call ProfilePlayer.GetItemAmount(itemId, null)
//   int GetItemAmount(ProfilePlayer* this, Item item, ItemState* state)
//
//   - this  : ProfilePlayer* = Profile.player_
//   - item  : W1 = itemId (= [X23 + 0x18])
//   - state : X2 = null
0x71084B23C0    LDR   X8,  [X19, #0xA0]             // X8  = Client.profile_ (Profile*)
0x71084B23C4    LDR   X0,  [X8,  #0x28]             // X0  = Profile.player_ (ProfilePlayer* = this)
0x71084B23C8    LDR   W1,  [X23, #0x18]             // W1  = itemId
0x71084B23CC    MOV   X2,  XZR                      // X2  = state = null
// X3 (MethodInfo*) is ignored by this wrapper; leave as-is
0x71084B23D0    BL    0x7104F78200                  // ProfilePlayer.GetItemAmount(item, state) -> W0 = currentAmount
// Step 4: compute diff = 999 - currentAmount into W2 using SUBS
//   W2 = targetMax - currentAmount
//   If W2 <= 0, skip DebugAddItem (already have 999 or more).
0x71084B23D4    MOV   W2, #999                      // W2 = targetMax (upper limit: 999)
0x71084B23D8    SUBS  W2, W2, W0                    // W2 = targetMax - currentAmount, set flags
0x71084B23DC    BLE   0x71084B23F0                  // if (W2 <= 0) -> skip adding and go to next item
// Step 5: if diff > 0, call DebugAddItem(itemId, diff, CancellationToken.None)
//   - this   : X0 = Client*
//   - itemId : W1 = [X23 + 0x18]
//   - amount : W2 = diff
//   - token  : X3 = 0
0x71084B23E0    MOV   X0, X19                       // X0 = Client*
0x71084B23E4    LDR   W1, [X23, #0x18]              // W1 = itemId
0x71084B23E8    MOV   X3, XZR                       // X3 = CancellationToken.None (0)
0x71084B23EC    BL    0x710558D7F0                  // Client.DebugAddItem(itemId, diff, 0)
// --- Loop counter update & condition check ---
0x71084B23F0    ADD   W22, W22, #1                  // i++
0x71084B23F4    CMP   W22, W21                      // i < count ?
0x71084B23F8    B.LO  0x71084B23BC                  // if (i < count) goto loop start
// --- Epilogue: restore registers & emulate original "MOV X0, X19" -----------
0x71084B23FC    LDP   X22, X23, [SP], #0x10         // restore X22, X23
0x71084B2400    LDP   X20, X21, [SP], #0x10         // restore X20, X21
0x71084B2404    LDP   X19, X30, [SP], #0x10         // restore X19, LR
0x71084B2408    MOV   X0, X19                       // emulate original "MOV X0, X19"
0x71084B240C    RET                                 // return to OnFocusIn, as if MOV X0,X19 had just run

// --- [Block D] Reference addresses ------------------------------------------
// Hook site:    Mdl.Ui.WardrobeMenu::OnFocusIn "MOV X0, X19"            0x71073D582C
// Code cave:    possession-checked GrantAll implementation              0x71084B238C
// Dev check:    CBZ W8, loc_710489ABCC (patched to NOP)                0x710489AB94
//
// get_MetaClient() (Mdl.Missions.MissionManager.get_MetaClient)        0x71033352C0
// ItemDatabase.get_Instance()                                          0x71045F3FC0
// ItemDatabase.GetAllByType(ItemType, object)                          0x71045EEF60
// ProfilePlayer.GetItemAmount(Item, ItemState)                         0x7104F78200
// Meta.Online.Client.DebugAddItem(int,int,CancellationToken)           0x710558D7F0
//
// Client.profile_    field offset                                      +0xA0
// Profile.player_    field offset                                      +0x28
// List<T>._size      field offset                                      +0x18
// List<T>._items     field offset                                      +0x20
// ItemData.id        field offset                                      +0x18
Post automatically merged:

Just to be sure, here is the proper way to use the "GetAll" cheat codes:

  1. Enable one "GetAll" cheat code (You cannot use multiple GetAll codes simultaneously).
  2. Open the Wardrobe.
  3. Press the HOME button to return to the Home Menu, then press the A button to return to the game.
  4. A spinning loading icon will appear in the center of the screen while the process completes.
  5. Once the loading icon disappears, disable the cheat code from Step 1 and close the Wardrobe.
Post automatically merged:



fixed.

[WelcomeVanellope]
04000000 03342B60 B4FE3781
04000000 03342B64 1545BE0A
04000000 084B238C B9402028
04000000 084B2390 7100051F
04000000 084B2394 544675E1
04000000 084B2398 A9BF7BF3
04000000 084B239C A9BF57F4
04000000 084B23A0 A9BF5FF6
04000000 084B23A4 A9BF67F8
04000000 084B23A8 A9BF6FFA
04000000 084B23AC AA0003F3
04000000 084B23B0 F9400C28
04000000 084B23B4 B9401914
04000000 084B23B8 96BA33A6
04000000 084B23BC 96BA0BF9
04000000 084B23C0 F9401800
04000000 084B23C4 2A1403E1
04000000 084B23C8 AA1F03E2
04000000 084B23CC 972BE5B1
04000000 084B23D0 AA0003F4
04000000 084B23D4 9749EA83
04000000 084B23D8 F9400C08
04000000 084B23DC F9400908
04000000 084B23E0 B9401915
04000000 084B23E4 F9400909
04000000 084B23E8 91008137
04000000 084B23EC 52800016
04000000 084B23F0 6B1502DF
04000000 084B23F4 5400042A
04000000 084B23F8 F8767AEA
04000000 084B23FC F9400D4B
04000000 084B2400 F940096B
04000000 084B2404 B9401978
04000000 084B2408 F940096C
04000000 084B240C 9100819A
04000000 084B2410 52800019
04000000 084B2414 6B18033F
04000000 084B2418 540002CA
04000000 084B241C F8797B40
04000000 084B2420 B9402801
04000000 084B2424 7100043F
04000000 084B2428 54000060
04000000 084B242C 7100083F
04000000 084B2430 540001C1
04000000 084B2434 F940400D
04000000 084B2438 B94049A1
04000000 084B243C 71033C3F
04000000 084B2440 540000A0
04000000 084B2444 7102303F
04000000 084B2448 54000101
04000000 084B244C 528001C1
04000000 084B2450 14000002
04000000 084B2454 528001A1
04000000 084B2458 F94019A3
04000000 084B245C AA1403E2
04000000 084B2460 AA1303E0
04000000 084B2464 96BA4137
04000000 084B2468 11000739
04000000 084B246C 17FFFFEA
04000000 084B2470 110006D6
04000000 084B2474 17FFFFDF
04000000 084B2478 A8C16FFA
04000000 084B247C A8C167F8
04000000 084B2480 A8C15FF6
04000000 084B2484 A8C157F4
04000000 084B2488 A8C17BF3
04000000 084B248C D65F03C0

Code:
// Hook point: Mdl.Missions.MissionManager$$OnTrackedMissionChanged
// Absolute Address: Base + 0x3342B60
// (Original instruction was: B Mdl.Missions.MissionManager$$RefreshCurrentFollower)

// Hook Code (at 0x7103342B60)
0x7103342B60    CBZ X1, 0x710333F250                 // TrackedActivity == NULL? -> Jump to RefreshCurrentFollower (Original target)
0x7103342B64    B   0x71084B238C                     // Jump to new Code Cave

// --- Code Cave Start --- (Address: 0x71084B238C)
0x71084B238C    LDR W8, [X1, #0x20]                  // Read ActivityCase (Offset 0x20 confirmed)
0x71084B2390    CMP W8, #1                           // ActivityCase == Mission (1) ?
0x71084B2394    B.NE 0x710333F250                    // Not Mission -> Jump to RefreshCurrentFollower

// Prologue
0x71084B2398    STP X19, X30, [SP, #-0x10]!
0x71084B239C    STP X20, X21, [SP, #-0x10]!
0x71084B23A0    STP X22, X23, [SP, #-0x10]!
0x71084B23A4    STP X24, X25, [SP, #-0x10]!
0x71084B23A8    STP X26, X27, [SP, #-0x10]!

0x71084B23AC    MOV X19, X0                           // X19 <- MissionManager* (this)
0x71084B23B0    LDR X8,  [X1, #0x18]                  // TrackedActivity.TrackedMission* (Offset 0x18 confirmed)
0x71084B23B4    LDR W20, [X8, #0x18]                  // missionId (Offset 0x18 confirmed)

// Call MissionManager.RefreshCurrentFollower (RVA: 0x333F250)
0x71084B23B8    BL  0x710333F250

// Call MissionManager.get_Profile (RVA: 0x33353A0)
0x71084B23BC    BL  0x71033353A0
0x71084B23C0    LDR X0, [X0, #0x30]                   // X0 <- ProfileWorld* (Offset 0x30 confirmed)

0x71084B23C4    MOV W1, W20                           // arg1: missionId (int passed as Item struct)
0x71084B23C8    MOV X2, XZR                           // arg2: predicate = NULL
// Call ProfileWorld.GetMissionSlot (RVA: 0x4FABA90)
0x71084B23CC    BL  0x7104FABA90
0x71084B23D0    MOV X20, X0                           // Keep MissionSlot* in X20

// Call MissionSlot.get_CurrentStep (RVA: 0x572CDE0)
0x71084B23D4    BL  0x710572CDE0                      // X0 <- MissionStep*

// MissionStep.SubSteps (Offset 0x18 confirmed in MissionStep.cs)
0x71084B23D8    LDR X8,  [X0, #0x18]                  // RepeatedField<MissionSubStep>*
0x71084B23DC    LDR X8,  [X8, #0x10]                  // List<MissionSubStep>* (IL2CPP internal)
0x71084B23E0    LDR W21, [X8, #0x18]                  // W21 <- subStepCount
0x71084B23E4    LDR X9,  [X8, #0x10]                  // _items (Il2CppArray*)
0x71084B23E8    ADD X23, X9, #0x20                    // X23 <- subSteps data base
0x71084B23EC    MOV W22, #0                           // i = 0

// ===== Outer loop over SubSteps =====
0x71084B23F0    CMP W22, W21
0x71084B23F4    B.GE 0x71084B2478                     // i >= subStepCount -> Epilogue

0x71084B23F8    LDR X10, [X23, X22, LSL #3]           // X10 <- MissionSubStep*
// MissionSubStep.Objectives (Offset 0x18 confirmed)
0x71084B23FC    LDR X11, [X10, #0x18]                 // RepeatedField<MissionObjective>*
0x71084B2400    LDR X11, [X11, #0x10]                 // List<MissionObjective>*
0x71084B2404    LDR W24, [X11, #0x18]                 // W24 <- objectiveCount
0x71084B2408    LDR X12, [X11, #0x10]                 // _items
0x71084B240C    ADD X26, X12, #0x20                   // X26 <- objectives data base
0x71084B2410    MOV W25, #0                           // j = 0

// —— Inner loop over Objectives ——
0x71084B2414    CMP W25, W24
0x71084B2418    B.GE 0x71084B2470                     // j >= objectiveCount -> next SubStep

0x71084B241C    LDR X0, [X26, X25, LSL #3]            // X0 <- MissionObjective*

// [UPDATE] MissionObjective.status_ Offset: 0x28
0x71084B2420    LDR W1, [X0, #0x28]                   // W1 <- status_
0x71084B2424    CMP W1, #1                            // status == Ongoing(1) ?
0x71084B2428    B.EQ 0x71084B2434                     // yes -> check step case
0x71084B242C    CMP W1, #2                            // status == ReadyToBeCompleted(2) ?
0x71084B2430    B.NE 0x71084B2468                     // no -> skip (j++)

// [UPDATE] MissionObjective.Data Offset: 0x80
0x71084B2434    LDR X13, [X0, #0x80]                  // X13 <- MissionObjectiveData*
// MissionObjectiveData.customStepCase_ (Offset 0x48 confirmed)
0x71084B2438    LDR W1,  [X13, #0x48]                 // W1 <- customStepCase
0x71084B243C    CMP W1, #207                          // MenuAction(207) ?
0x71084B2440    B.EQ 0x71084B2454                     // yes -> set Condition=13
0x71084B2444    CMP W1, #140                          // DesignChallenge(140) ?
0x71084B2448    B.NE 0x71084B2468                     // no -> skip
0x71084B244C    MOV W1, #14                           // Condition = 14 (ForceSkipDesignChallenge)
0x71084B2450    B   0x71084B2458

0x71084B2454    MOV W1, #13                           // Condition = 13 (MenuAction)
// MissionObjectiveData.stepName_ (Offset 0x30 confirmed)
0x71084B2458    LDR X3, [X13, #0x30]                  // X3 <- stepName
0x71084B245C    MOV X2, X20                           // X2 <- missionSlot*
0x71084B2460    MOV X0, X19                           // X0 <- this (MissionManager*)
// Call MissionManager.CheckForAdvanceStep (RVA: 0x3342940)
0x71084B2464    BL  0x7103342940

// Advance inner loop
0x71084B2468    ADD W25, W25, #1                      // j++
0x71084B246C    B   0x71084B2414                      // loop back

// Advance outer loop
0x71084B2470    ADD W22, W22, #1                      // i++
0x71084B2474    B   0x71084B23F0                      // loop back

// ==== Epilogue ====
0x71084B2478    LDP X26, X27, [SP], #0x10
0x71084B247C    LDP X24, X25, [SP], #0x10
0x71084B2480    LDP X22, X23, [SP], #0x10
0x71084B2484    LDP X20, X21, [SP], #0x10
0x71084B2488    LDP X19, X30, [SP], #0x10
0x71084B248C    RET
Do either of these include premium stuff?
Post automatically merged:

With this cheat code enabled, open the wardrobe / furniture menu and move the cursor over the item you want to delete. First, press the R button, and while holding it down, press and hold the A button for a few seconds. Re-open the wardrobe / furniture to confirm that the item has been deleted. If the item hasn't been removed and has instead moved to the end of its category, please repeat the same procedure.

Disney Dreamlight Valley v1.19.1 BID=DD44F396D4C95D6B

[R SelectToRemove]
04000000 0471DEB0 D503201F
04000000 0471F644 D503201F
04000000 06A943EC F943EB00
04000000 06A943F0 B940E408
04000000 06A943F4 35000048
04000000 06A943F8 9680AECE
04000000 06A943FC 9001A2C8
04000000 06A94400 910023E0
04000000 06A94404 F9478D02
04000000 07148960 F0016876
04000000 07148964 F94176C0
04000000 07148968 B940E408
04000000 0714896C 34002288
04000000 07148970 F0019537
04000000 07148974 3943F6E8
04000000 07185E68 F94007E3
04000000 07185E6C AA1403E0
04000000 07185E70 AA1503E1
04000000 07185E74 B94007E4
04000000 07185E78 2A1303E2
04000000 07185E7C 94000011
80000080
04000000 06A943EC 971E84ED
04000000 06A943F0 B9400BE1
04000000 06A943F4 529FFFE2
04000000 06A943F8 72AFFFE2
04000000 06A943FC AA1F03E3
04000000 06A94400 97A3BC40
04000000 06A94404 17FFFF94
04000000 07148960 9703B390
04000000 07148964 2A1303E1
04000000 07148968 52800022
04000000 0714896C AA1F03E3
04000000 07148970 9788EAE4
04000000 07148974 17FFFFDB
04000000 07185E68 9702BE4E
04000000 07185E6C B94003E1
04000000 07185E70 52800022
04000000 07185E74 AA1F03E3
04000000 07185E78 9787F5A2
04000000 07185E7C 14000001
20000000

With this cheat code, you can delete items from the wardrobe / furniture that you usually can't remove. While this cheat code doesn't work on every item type, it is confirmed to be compatible with at least clothing, furniture, and tools.
It just seems to crash the game
 
Last edited by ChicagoMel,
  • Like
Reactions: morarin
Do either of these include premium stuff?

Yes, the items you can get with that cheat code include Premium Shop and Star Path rewards. To be precise, it acquires every single item that exists in the game.

It just seems to crash the game

Thank you for the report. I tested it myself and confirmed that it crashes. I will investigate the cause and try to fix it.
 
DDV_Media_Key_Art_46686e9a14.jpg


Before using any cheat codes, be sure to back up your save data. You use cheat codes at your own risk.

Detailed reports are appreciated for any cheat code issues. New cheat code requests are always welcome (I can try at least).

sd:/atmospshere/contents/0100D39012C1A000/cheats/BID.txt

LatestArchive


  1. {MasterCode}
    040E0000 04F8C62C 6B1302A8
    04000000 04F89D20 A9BA7BFD
    04000000 04F89D24 F9000BFB
    04000000 04F7EE70 3607F500
    04000000 04959BEC 97FFFE41
    04000000 0495CEC4 941876A7
    04000000 04926B60 D10283FF
    04000000 04926DD0 D101C3FF
    04000000 04E923A4 39412268
    04000000 04E932E4 39412288
    04000000 04E8743C 394092C8
    04000000 04E7E298 B9401F48
    04000000 0304EA34 F9406800
    04000000 0304EA38 B40002A0
    04000000 0304EA3C B9402041
    04000000 0304EA40 AA1F03E2
    04000000 0304EA44 94002293
    04000000 0304EA48 F9406E60
    04000000 0304EA4C B4000200
    04000000 0304EA50 AA1F03E1
    04000000 04901260 2A0003F5
    04000000 04901304 39411108
    04000000 04901334 7100051F
    04000000 04901338 1A9F17E8
    04000000 04901350 54000141
    04000000 04901354 52800068
    04000000 048E3898 97C6165A
    04000000 048E3BA0 94483EB0
    04000000 048ED1F0 A9BB7BFD
    04000000 048ED550 D101C3FF
    04000000 049349E8 F8018D00
    04000000 04977430 97D74B28
    04000000 04977A6C 5400068B
    04000000 04E7A6AC 0B180101
    04000000 04F638A0 B9402A78
    04000000 04F638A4 0B140316
    04000000 04DE4864 B94026E8
    04000000 04DE486C 0B150108
    04000000 04F77144 0B180108
    04000000 04F77148 F81F03BF
    04000000 04F7A840 1A89B2B8
    04000000 04F7A848 1A89B115
    04000000 057D63E8 2A0303F5
    04000000 077360D0 1A9F17E0
    04000000 0774C814 71000D1F
    04000000 0774C818 1A9F17E0
    04000000 05373BF0 54000861
    04000000 057C9964 5400032D
    04000000 057CD3CC 6B08013F
    04000000 057CD3D0 540000AA
    04000000 057CD3D4 2A1F03E0
    04000000 04B449DC 37000140
    04000000 04B44A18 54000081
    04000000 04B44DD8 B9403108
    04000000 04B44EFC B940016B
    04000000 073D582C AA1303E0
    04000000 04897078 2A1502C8
    04000000 04F80930 54FFFA60
    04000000 04F808BC 2A180108
    04000000 04A74D10 1A9F07E0
    04000000 04A74D3C 52800020
    04000000 04A76940 3707F380
    04000000 04A7884C 36003260
    04000000 04A79494 9414042F
    04000000 05003A84 36001600
    04000000 03342B60 17FFF1BC

    [R MoveSpeed x2]
    04000000 031F3E0C 1E204140
    04000000 031F3E10 1E204161
    04000000 031F3E18 1E204182
    80000080
    04000000 031F3E0C 1E2A2940
    04000000 031F3E10 1E2B2961
    04000000 031F3E18 1E2C2982
    20000000

    [EnergyNoDecrease]
    040E0000 04F8C62C 6B1F02A8

    [CurrencyNoDecrease]
    04000000 04F89D20 52800000
    04000000 04F89D24 D65F03C0

    [R PickupToMax]
    04000000 03A68CC0 B94017F5
    04000000 03A68D98 4B1602B5
    80000080
    04000000 03A68CC0 2A1B03F5
    04000000 03A68D98 52800015
    20000000

    [ZL NoConsumeItems]
    04000000 03A69200 D10283FF
    04000000 03A69204 A9047BFD
    04000000 03A69AB0 D10243FF
    04000000 03A69AB4 A9037BFD
    80000100
    04000000 03A69200 52800020
    04000000 03A69204 D65F03C0
    04000000 03A69AB0 52800020
    04000000 03A69AB4 D65F03C0
    20000000

    [ShowAllCraftingRecipe]
    04000000 04F7EE70 D503201F

    [FreeCraft]
    04000000 04959BEC 52800000
    04000000 0495CEC4 52800020

    [CookKeepItems]
    04000000 04926B60 D65F03C0
    04000000 04926DD0 D65F03C0

    [AlwaysCriticalSuccess]
    04000000 04E923A4 52800028
    04000000 04E932E4 52800028

    [AlwaysBurning]
    04000000 04E8743C 52800028

    [AlwaysActivityBonusRewards]
    04000000 04E7E298 52807D08

    [EasyFishing]
    04000000 0304EA34 F9406660
    04000000 0304EA38 AA1F03E1
    04000000 0304EA3C 94001B59
    04000000 0304EA40 F9406660
    04000000 0304EA44 52800001
    04000000 0304EA48 AA1F03E2
    04000000 0304EA4C 94001B01
    04000000 0304EA50 1400000C

    [--SectionStart:ForceFishRarity--]
    00000000 00000000 00000000
    [ForceNormalFish]
    04000000 04901260 52800035
    04000000 04901304 52800008
    04000000 04901334 7100051F
    04000000 04901338 1A9F07E8
    04000000 04901350 54000140
    04000000 04901354 52800028

    [ForceUncommonFish]
    04000000 04901260 52800035
    04000000 04901304 52800008
    04000000 04901334 7100091F
    04000000 04901338 1A9F07E8
    04000000 04901350 54000140
    04000000 04901354 52800048

    [ForceRareFish]
    04000000 04901260 52800035
    04000000 04901304 52800008
    04000000 04901334 71000D1F
    04000000 04901338 1A9F07E8
    04000000 04901350 54000140
    [--SectionEnd:ForceFishRarity--]
    00000000 00000000 00000000

    [EasyGardening]
    04000000 048E3898 52800020
    04000000 048E3BA0 D503201F

    [InfHarvesting]
    04000000 048ED1F0 D65F03C0
    04000000 048ED550 D65F03C0

    [InfMiningRock]
    04000000 049349E8 F8018D1F

    [EasyUnlockCritter]
    04000000 04977430 52800020
    04000000 04977A6C D503201F

    [PetFriendshipMax(add)]
    04000000 04E7A6AC 2A1503E1

    [MountBondMax(add)]
    04000000 04F638A0 52A00036
    04000000 04F638A4 729C6CD6

    [FriendshipMax(add)]
    04000000 04DE4864 52A00028
    04000000 04DE486C 729C6CC8

    [XPMax(add)]
    04000000 04F77144 52A00148
    04000000 04F77148 72824408

    [CurrencyMax(add)]
    04000000 04F7A840 1A89B138
    04000000 04F7A848 1A89B135

    [EasyClaimDuties]
    04000000 057D63E8 52800035
    04000000 077360D0 52800020
    04000000 0774C814 7100111F
    04000000 0774C818 1A9F07E0
    04000000 05373BF0 D503201F

    [ClaimAllAchievements]
    04000000 057C9964 D503201F
    04000000 057CD3CC B9006668
    04000000 057CD3D0 B9009A68
    04000000 057CD3D4 14000004

    [--SectionStart:EasyScramblecoin--]
    00000000 00000000 00000000
    [6Points]
    04000000 04B449DC 1400000A
    04000000 04B44A18 14000004
    04000000 04B44DD8 52800008
    04000000 04B44EFC 528000CB

    [12Points]
    04000000 04B449DC 1400000A
    04000000 04B44A18 14000004
    04000000 04B44DD8 52800008
    04000000 04B44EFC 5280018B

    [15Points]
    04000000 04B449DC 1400000A
    04000000 04B44A18 14000004
    04000000 04B44DD8 52800008
    04000000 04B44EFC 528001EB

    [18Points]
    04000000 04B449DC 1400000A
    04000000 04B44A18 14000004
    04000000 04B44DD8 52800008
    04000000 04B44EFC 5280024B

    [21Points]
    04000000 04B449DC 1400000A
    04000000 04B44A18 14000004
    04000000 04B44DD8 52800008
    04000000 04B44EFC 528002AB

    [50Points]
    04000000 04B449DC 1400000A
    04000000 04B44A18 14000004
    04000000 04B44DD8 52800008
    04000000 04B44EFC 5280064B
    [--SectionEnd:EasyScramblecoin--]
    00000000 00000000 00000000

    [--SectionStart:GetAllCodes--]
    00000000 00000000 00000000
    [GetAllClothing]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BF5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 97050708
    04000000 084B23A4 528000A1
    04000000 084B23A8 AA1F03E2
    04000000 084B23AC 9704F2ED
    04000000 084B23B0 91008014
    04000000 084B23B4 B9401815
    04000000 084B23B8 52800016
    04000000 084B23BC F8767A80
    04000000 084B23C0 B9401801
    04000000 084B23C4 AA1303E0
    04000000 084B23C8 52800022
    04000000 084B23CC AA1F03E3
    04000000 084B23D0 97436D08
    04000000 084B23D4 110006D6
    04000000 084B23D8 6B1502DF
    04000000 084B23DC 54FFFF03
    04000000 084B23E0 A8C15BF5
    04000000 084B23E4 A8C153F3
    04000000 084B23E8 A8C17BE0
    04000000 084B23EC D65F03C0

    [GetAllGliders]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BF5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 97050708
    04000000 084B23A4 528000E1
    04000000 084B23A8 AA1F03E2
    04000000 084B23AC 9704F2ED
    04000000 084B23B0 91008014
    04000000 084B23B4 B9401815
    04000000 084B23B8 52800016
    04000000 084B23BC F8767A80
    04000000 084B23C0 B9401801
    04000000 084B23C4 AA1303E0
    04000000 084B23C8 52800022
    04000000 084B23CC AA1F03E3
    04000000 084B23D0 97436D08
    04000000 084B23D4 110006D6
    04000000 084B23D8 6B1502DF
    04000000 084B23DC 54FFFF03
    04000000 084B23E0 A8C15BF5
    04000000 084B23E4 A8C153F3
    04000000 084B23E8 A8C17BE0
    04000000 084B23EC D65F03C0

    [GetAllFacePaint]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BF5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 97050708
    04000000 084B23A4 528001C1
    04000000 084B23A8 AA1F03E2
    04000000 084B23AC 9704F2ED
    04000000 084B23B0 91008014
    04000000 084B23B4 B9401815
    04000000 084B23B8 52800016
    04000000 084B23BC F8767A80
    04000000 084B23C0 B9401801
    04000000 084B23C4 AA1303E0
    04000000 084B23C8 52800022
    04000000 084B23CC AA1F03E3
    04000000 084B23D0 97436D08
    04000000 084B23D4 110006D6
    04000000 084B23D8 6B1502DF
    04000000 084B23DC 54FFFF03
    04000000 084B23E0 A8C15BF5
    04000000 084B23E4 A8C153F3
    04000000 084B23E8 A8C17BE0
    04000000 084B23EC D65F03C0

    [GetAllTool&Accessory]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BF5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 97050708
    04000000 084B23A4 52800161
    04000000 084B23A8 AA1F03E2
    04000000 084B23AC 9704F2ED
    04000000 084B23B0 91008014
    04000000 084B23B4 B9401815
    04000000 084B23B8 52800016
    04000000 084B23BC F8767A80
    04000000 084B23C0 B9401801
    04000000 084B23C4 AA1303E0
    04000000 084B23C8 52800022
    04000000 084B23CC AA1F03E3
    04000000 084B23D0 97436D08
    04000000 084B23D4 110006D6
    04000000 084B23D8 6B1502DF
    04000000 084B23DC 54FFFF03
    04000000 084B23E0 A8C15BF5
    04000000 084B23E4 A8C153F3
    04000000 084B23E8 A8C17BE0
    04000000 084B23EC D65F03C0

    [GetAllFurniture]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF57F4
    04000000 084B2394 A9BF5FF6
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 97050708
    04000000 084B23A4 52800081
    04000000 084B23A8 AA1F03E2
    04000000 084B23AC 9704F2ED
    04000000 084B23B0 91008014
    04000000 084B23B4 B9401815
    04000000 084B23B8 52800016
    04000000 084B23BC F8767A97
    04000000 084B23C0 F9405268
    04000000 084B23C4 F9401500
    04000000 084B23C8 B9401AE1
    04000000 084B23CC AA1F03E2
    04000000 084B23D0 972B178C
    04000000 084B23D4 52807CE2
    04000000 084B23D8 6B000042
    04000000 084B23DC 540000AD
    04000000 084B23E0 AA1303E0
    04000000 084B23E4 B9401AE1
    04000000 084B23E8 AA1F03E3
    04000000 084B23EC 97436D01
    04000000 084B23F0 110006D6
    04000000 084B23F4 6B1502DF
    04000000 084B23F8 54FFFE23
    04000000 084B23FC A8C15FF6
    04000000 084B2400 A8C157F4
    04000000 084B2404 A8C17BF3
    04000000 084B2408 AA1303E0
    04000000 084B240C D65F03C0

    [GetAllWallpaper&Flooring]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BF5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 97050708
    04000000 084B23A4 52800201
    04000000 084B23A8 AA1F03E2
    04000000 084B23AC 9704F2ED
    04000000 084B23B0 91008014
    04000000 084B23B4 B9401815
    04000000 084B23B8 52800016
    04000000 084B23BC F8767A80
    04000000 084B23C0 B9401801
    04000000 084B23C4 AA1303E0
    04000000 084B23C8 52800022
    04000000 084B23CC AA1F03E3
    04000000 084B23D0 97436D08
    04000000 084B23D4 110006D6
    04000000 084B23D8 6B1502DF
    04000000 084B23DC 54FFFF03
    04000000 084B23E0 A8C15BF5
    04000000 084B23E4 A8C153F3
    04000000 084B23E8 A8C17BE0
    04000000 084B23EC D65F03C0

    [GetAllPlayerHouse]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BE5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 9000EAA0
    04000000 084B23A4 91326000
    04000000 084B23A8 52800021
    04000000 084B23AC 961821C5
    04000000 084B23B0 97050704
    04000000 084B23B4 52800041
    04000000 084B23B8 528000A8
    04000000 084B23BC B90013E8
    04000000 084B23C0 910043E2
    04000000 084B23C4 9000EAA3
    04000000 084B23C8 F9464C63
    04000000 084B23CC 96BC89E1
    04000000 084B23D0 91008014
    04000000 084B23D4 B9401815
    04000000 084B23D8 52800016
    04000000 084B23DC F8767A80
    04000000 084B23E0 B9401801
    04000000 084B23E4 AA1303E0
    04000000 084B23E8 52800022
    04000000 084B23EC AA1F03E3
    04000000 084B23F0 97436D00
    04000000 084B23F4 110006D6
    04000000 084B23F8 6B1502DF
    04000000 084B23FC 54FFFF03
    04000000 084B2400 A8C25BF5
    04000000 084B2404 A8C153F3
    04000000 084B2408 A8C17BE0
    04000000 084B240C D65F03C0

    [GetAllCompanion]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BE5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 9000EAA0
    04000000 084B23A4 91352000
    04000000 084B23A8 52800021
    04000000 084B23AC 961821C5
    04000000 084B23B0 97050704
    04000000 084B23B4 52800181
    04000000 084B23B8 52800008
    04000000 084B23BC B90013E8
    04000000 084B23C0 910043E2
    04000000 084B23C4 9000EAA3
    04000000 084B23C8 F946A463
    04000000 084B23CC 96BC89E1
    04000000 084B23D0 91008014
    04000000 084B23D4 B9401815
    04000000 084B23D8 52800016
    04000000 084B23DC F8767A80
    04000000 084B23E0 B9401801
    04000000 084B23E4 AA1303E0
    04000000 084B23E8 52800022
    04000000 084B23EC AA1F03E3
    04000000 084B23F0 97436D00
    04000000 084B23F4 110006D6
    04000000 084B23F8 6B1502DF
    04000000 084B23FC 54FFFF03
    04000000 084B2400 A8C25BF5
    04000000 084B2404 A8C153F3
    04000000 084B2408 A8C17BE0
    04000000 084B240C D65F03C0

    [GetAllMount]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BE5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 9000EAA0
    04000000 084B23A4 9134C000
    04000000 084B23A8 52800021
    04000000 084B23AC 961821C5
    04000000 084B23B0 97050704
    04000000 084B23B4 52800181
    04000000 084B23B8 52800068
    04000000 084B23BC B90013E8
    04000000 084B23C0 910043E2
    04000000 084B23C4 9000EAA3
    04000000 084B23C8 F9469863
    04000000 084B23CC 96BC89E1
    04000000 084B23D0 91008014
    04000000 084B23D4 B9401815
    04000000 084B23D8 52800016
    04000000 084B23DC F8767A80
    04000000 084B23E0 B9401801
    04000000 084B23E4 AA1303E0
    04000000 084B23E8 52800022
    04000000 084B23EC AA1F03E3
    04000000 084B23F0 97436D00
    04000000 084B23F4 110006D6
    04000000 084B23F8 6B1502DF
    04000000 084B23FC 54FFFF03
    04000000 084B2400 A8C25BF5
    04000000 084B2404 A8C153F3
    04000000 084B2408 A8C17BE0
    04000000 084B240C D65F03C0

    [GetAllMountGear]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BF5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 97050708
    04000000 084B23A4 528002A1
    04000000 084B23A8 AA1F03E2
    04000000 084B23AC 9704F2ED
    04000000 084B23B0 91008014
    04000000 084B23B4 B9401815
    04000000 084B23B8 52800016
    04000000 084B23BC F8767A80
    04000000 084B23C0 B9401801
    04000000 084B23C4 AA1303E0
    04000000 084B23C8 52800022
    04000000 084B23CC AA1F03E3
    04000000 084B23D0 97436D08
    04000000 084B23D4 110006D6
    04000000 084B23D8 6B1502DF
    04000000 084B23DC 54FFFF03
    04000000 084B23E0 A8C15BF5
    04000000 084B23E4 A8C153F3
    04000000 084B23E8 A8C17BE0
    04000000 084B23EC D65F03C0

    [GetAllSkin]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BF5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 97050708
    04000000 084B23A4 52800221
    04000000 084B23A8 AA1F03E2
    04000000 084B23AC 9704F2ED
    04000000 084B23B0 91008014
    04000000 084B23B4 B9401815
    04000000 084B23B8 52800016
    04000000 084B23BC F8767A80
    04000000 084B23C0 B9401801
    04000000 084B23C4 AA1303E0
    04000000 084B23C8 52800022
    04000000 084B23CC AA1F03E3
    04000000 084B23D0 97436D08
    04000000 084B23D4 110006D6
    04000000 084B23D8 6B1502DF
    04000000 084B23DC 54FFFF03
    04000000 084B23E0 A8C15BF5
    04000000 084B23E4 A8C153F3
    04000000 084B23E8 A8C17BE0
    04000000 084B23EC D65F03C0

    [GetAllMotif]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BF5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 97050708
    04000000 084B23A4 52800141
    04000000 084B23A8 AA1F03E2
    04000000 084B23AC 9704F2ED
    04000000 084B23B0 91008014
    04000000 084B23B4 B9401815
    04000000 084B23B8 52800016
    04000000 084B23BC F8767A80
    04000000 084B23C0 B9401801
    04000000 084B23C4 AA1303E0
    04000000 084B23C8 52800022
    04000000 084B23CC AA1F03E3
    04000000 084B23D0 97436D08
    04000000 084B23D4 110006D6
    04000000 084B23D8 6B1502DF
    04000000 084B23DC 54FFFF03
    04000000 084B23E0 A8C15BF5
    04000000 084B23E4 A8C153F3
    04000000 084B23E8 A8C17BE0
    04000000 084B23EC D65F03C0

    [GetAllPhotoFrame]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BF5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 97050708
    04000000 084B23A4 52800261
    04000000 084B23A8 AA1F03E2
    04000000 084B23AC 9704F2ED
    04000000 084B23B0 91008014
    04000000 084B23B4 B9401815
    04000000 084B23B8 52800016
    04000000 084B23BC F8767A80
    04000000 084B23C0 B9401801
    04000000 084B23C4 AA1303E0
    04000000 084B23C8 52800022
    04000000 084B23CC AA1F03E3
    04000000 084B23D0 97436D08
    04000000 084B23D4 110006D6
    04000000 084B23D8 6B1502DF
    04000000 084B23DC 54FFFF03
    04000000 084B23E0 A8C15BF5
    04000000 084B23E4 A8C153F3
    04000000 084B23E8 A8C17BE0
    04000000 084B23EC D65F03C0

    [GetAllCookingRecipe]
    04000000 073D582C 944372D8
    04000000 0489AB94 D503201F
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BF5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 97050708
    04000000 084B23A4 528019A1
    04000000 084B23A8 AA1F03E2
    04000000 084B23AC 9704F2ED
    04000000 084B23B0 91008014
    04000000 084B23B4 B9401815
    04000000 084B23B8 52800016
    04000000 084B23BC F8767A80
    04000000 084B23C0 B9401801
    04000000 084B23C4 AA1303E0
    04000000 084B23C8 52800022
    04000000 084B23CC AA1F03E3
    04000000 084B23D0 97436D08
    04000000 084B23D4 110006D6
    04000000 084B23D8 6B1502DF
    04000000 084B23DC 54FFFF03
    04000000 084B23E0 A8C15BF5
    04000000 084B23E4 A8C153F3
    04000000 084B23E8 A8C17BE0
    04000000 084B23EC D65F03C0

    [GetAllMemory]
    04000000 0489AB94 D503201F
    04000000 04897078 2A1F03E8
    04000000 073D582C 944372D8
    04000000 04F80930 17FFFFD3
    04000000 04F808BC 94D4C6CD
    04000000 084B238C A9BF7BF3
    04000000 084B2390 A9BF53F3
    04000000 084B2394 A9BF5BF5
    04000000 084B2398 96BA0BCA
    04000000 084B239C AA0003F3
    04000000 084B23A0 97050708
    04000000 084B23A4 528001A1
    04000000 084B23A8 AA1F03E2
    04000000 084B23AC 9704F2ED
    04000000 084B23B0 91008014
    04000000 084B23B4 B9401815
    04000000 084B23B8 52800016
    04000000 084B23BC F8767A80
    04000000 084B23C0 B9401801
    04000000 084B23C4 AA1303E0
    04000000 084B23C8 52800022
    04000000 084B23CC AA1F03E3
    04000000 084B23D0 97436D08
    04000000 084B23D4 110006D6
    04000000 084B23D8 6B1502DF
    04000000 084B23DC 54FFFF03
    04000000 084B23E0 A8C15BF5
    04000000 084B23E4 A8C153F3
    04000000 084B23E8 A8C17BE0
    04000000 084B23EC D65F03C0
    04000000 084B23F0 A9BF07E0
    04000000 084B23F4 A9BF0FE2
    04000000 084B23F8 970506F2
    04000000 084B23FC AA1503E1
    04000000 084B2400 9704F12C
    04000000 084B2404 B9406809
    04000000 084B2408 12800008
    04000000 084B240C 5280040A
    04000000 084B2410 4B09014A
    04000000 084B2414 1ACA2508
    04000000 084B2418 A8C10FE2
    04000000 084B241C A8C107E0
    04000000 084B2420 172B3928
    [--SectionEnd:GetAllCodes--]
    00000000 00000000 00000000

    [--SectionStart:FixCodes--]
    00000000 00000000 00000000
    [SellToTrash]
    04000000 04A74D10 2A1F03E0
    04000000 04A74D3C 2A1F03E0
    04000000 04A76940 17FFFF9C
    04000000 04A7884C D503201F
    04000000 04A79494 52800000

    [R SelectToRemove]
    04000000 0489E500 D503201F
    04000000 0489FC94 D503201F
    04000000 06CAE9AC F9433F00
    04000000 06CAE9B0 B940E408
    04000000 06CAE9B4 35000048
    04000000 06CAE9B8 96789236
    04000000 06CAE9BC 9001AAC8
    04000000 06CAE9C0 910023E0
    04000000 06CAE9C4 F9446902
    04000000 073ACA20 B0016E16
    04000000 073ACA24 F94226C0
    04000000 073ACA28 B940E408
    04000000 073ACA2C 34002288
    04000000 073ACA30 D0019BB7
    04000000 073ACA34 394816E8
    04000000 073EAE58 F94007E3
    04000000 073EAE5C AA1403E0
    04000000 073EAE60 AA1503E1
    04000000 073EAE64 B94007E4
    04000000 073EAE68 2A1303E2
    04000000 073EAE6C 94000011
    80000080
    04000000 06CAE9AC 97161B7D
    04000000 06CAE9B0 B9400BE1
    04000000 06CAE9B4 529FFFE2
    04000000 06CAE9B8 72AFFFE2
    04000000 06CAE9BC AA1F03E3
    04000000 06CAE9C0 979B52D0
    04000000 06CAE9C4 17FFFF94
    04000000 073ACA20 96FA2360
    04000000 073ACA24 2A1303E1
    04000000 073ACA28 52800022
    04000000 073ACA2C AA1F03E3
    04000000 073ACA30 977F5AB4
    04000000 073ACA34 17FFFFDB
    04000000 073EAE58 96F92A52
    04000000 073EAE5C B94003E1
    04000000 073EAE60 52800022
    04000000 073EAE64 AA1F03E3
    04000000 073EAE68 977E61A6
    04000000 073EAE6C 14000001
    20000000

    [FixMissionRewards]
    04000000 05003A84 D503201F

    [WelcomeVanellope]
    04000000 03342B60 B4FE3781
    04000000 03342B64 1545BE0A
    04000000 084B238C B9402028
    04000000 084B2390 7100051F
    04000000 084B2394 544675E1
    04000000 084B2398 A9BF7BF3
    04000000 084B239C A9BF57F4
    04000000 084B23A0 A9BF5FF6
    04000000 084B23A4 A9BF67F8
    04000000 084B23A8 A9BF6FFA
    04000000 084B23AC AA0003F3
    04000000 084B23B0 F9400C28
    04000000 084B23B4 B9401914
    04000000 084B23B8 96BA33A6
    04000000 084B23BC 96BA0BF9
    04000000 084B23C0 F9401800
    04000000 084B23C4 2A1403E1
    04000000 084B23C8 AA1F03E2
    04000000 084B23CC 972BE5B1
    04000000 084B23D0 AA0003F4
    04000000 084B23D4 9749EA83
    04000000 084B23D8 F9400C08
    04000000 084B23DC F9400908
    04000000 084B23E0 B9401915
    04000000 084B23E4 F9400909
    04000000 084B23E8 91008137
    04000000 084B23EC 52800016
    04000000 084B23F0 6B1502DF
    04000000 084B23F4 5400042A
    04000000 084B23F8 F8767AEA
    04000000 084B23FC F9400D4B
    04000000 084B2400 F940096B
    04000000 084B2404 B9401978
    04000000 084B2408 F940096C
    04000000 084B240C 9100819A
    04000000 084B2410 52800019
    04000000 084B2414 6B18033F
    04000000 084B2418 540002CA
    04000000 084B241C F8797B40
    04000000 084B2420 B9402801
    04000000 084B2424 7100043F
    04000000 084B2428 54000060
    04000000 084B242C 7100083F
    04000000 084B2430 540001C1
    04000000 084B2434 F940400D
    04000000 084B2438 B94049A1
    04000000 084B243C 71033C3F
    04000000 084B2440 540000A0
    04000000 084B2444 7102303F
    04000000 084B2448 54000101
    04000000 084B244C 528001C1
    04000000 084B2450 14000002
    04000000 084B2454 528001A1
    04000000 084B2458 F94019A3
    04000000 084B245C AA1403E2
    04000000 084B2460 AA1303E0
    04000000 084B2464 96BA4137
    04000000 084B2468 11000739
    04000000 084B246C 17FFFFEA
    04000000 084B2470 110006D6
    04000000 084B2474 17FFFFDF
    04000000 084B2478 A8C16FFA
    04000000 084B247C A8C167F8
    04000000 084B2480 A8C15FF6
    04000000 084B2484 A8C157F4
    04000000 084B2488 A8C17BF3
    04000000 084B248C D65F03C0
    [--SectionEnd:FixCodes--]
    00000000 00000000 00000000

  2. {MasterCode}
    040E0000 04D81E9C 6B1302A8
    04000000 04D7F590 A9BA7BFD
    04000000 04D7F594 F9000BFB
    04000000 04D75800 3607F500
    04000000 047D8ACC 97FFFE41
    04000000 047DBDA4 94165553
    04000000 0599F680 D10283FF
    04000000 047A64F0 D101C3FF
    04000000 04CB7384 39412268
    04000000 04CB82C4 39412288
    04000000 04CAC41C 394092C8
    04000000 04780960 2A0003F5
    04000000 04780A04 39411108
    04000000 04780A34 7100051F
    04000000 04780A38 1A9F17E8
    04000000 04780A50 54000141
    04000000 04780A54 52800068
    04000000 04C775A8 B9401F48
    04000000 02FA8C94 F9406800
    04000000 02FA8C98 B40002A0
    04000000 02FA8C9C B9402041
    04000000 02FA8CA0 AA1F03E2
    04000000 02FA8CA4 94001DE3
    04000000 02FA8CA8 F9406E60
    04000000 02FA8CAC B4000200
    04000000 02FA8CB0 AA1F03E1
    04000000 047631C8 97C823E6
    04000000 047634D0 9445E9C8
    04000000 0476CB20 A9BB7BFD
    04000000 0476CE80 D101C3FF
    04000000 047B3B88 F8018D00
    04000000 047F50E0 97D8A160
    04000000 047F571C 5400068B
    04000000 04C739BC 0B180101
    04000000 04C09824 B94026E8
    04000000 04C0982C 0B150108
    04000000 04D6DC34 0B180108
    04000000 04D6DC38 F81F03BF
    04000000 04D711D0 1A89B2B8
    04000000 04D711D8 1A89B115
    04000000 055BF774 5400032D
    04000000 055C31DC 6B08013F
    04000000 055C31E0 540000AA
    04000000 055C31E4 2A1F03E0
    04000000 0471A654 340001C8
    04000000 0717107C AA1303E0
    04000000 04716B68 2A1502C8
    04000000 04D761A0 54FFFA60
    04000000 04D7612C 2A180108
    04000000 03242A10 17FFF190
    04000000 03242A14 D503201F
    04000000 048EFC30 370003E0
    04000000 048EFC70 3707F380
    04000000 048F1B58 370033A0
    04000000 048F1BA0 36003240
    04000000 048F27E4 9411F9BF
    04000000 07270AE8 52000015
    04000000 0471DEB0 34000148
    04000000 0471F644 34000148
    04000000 04E1C2F4 36001600

    [R MoveSpeed x2]
    04000000 03120190 1E204160
    04000000 03120194 1E204181
    04000000 03120198 1E2041A2
    80000080
    04000000 03120190 1E2B2960
    04000000 03120194 1E2C2981
    04000000 03120198 1E2D29A2
    20000000

    [EnergyNoDecrease]
    040E0000 04D81E9C 6B1F02A8

    [CurrencyNoDecrease]
    04000000 04D7F590 52800000
    04000000 04D7F594 D65F03C0

    [ZL NoConsumeItems]
    04000000 0396C160 D10283FF
    04000000 0396C164 A9047BFD
    04000000 0396CA10 D10243FF
    04000000 0396CA14 A9037BFD
    80000100
    04000000 0396C160 52800020
    04000000 0396C164 D65F03C0
    04000000 0396CA10 52800020
    04000000 0396CA14 D65F03C0
    20000000

    [ShowAllCraftingRecipe]
    04000000 04D75800 D503201F

    [FreeCraft]
    04000000 047D8ACC 52800000
    04000000 047DBDA4 52800020

    [CookKeepItems]
    04000000 0599F680 D65F03C0
    04000000 047A64F0 D65F03C0

    [AlwaysCriticalSuccess]
    04000000 04CB7384 52800028
    04000000 04CB82C4 52800028

    [AlwaysBurning]
    04000000 04CAC41C 52800028

    [AlwaysActivityBonusRewards]
    04000000 04C775A8 52807D08

    [EasyFishing]
    04000000 02FA8C94 F9406660
    04000000 02FA8C98 AA1F03E1
    04000000 02FA8C9C 940016A9
    04000000 02FA8CA0 F9406660
    04000000 02FA8CA4 52800001
    04000000 02FA8CA8 AA1F03E2
    04000000 02FA8CAC 94001651
    04000000 02FA8CB0 1400000C

    [--SectionStart:ForceFishRarity--]
    00000000 00000000 00000000
    [ForceNormalFish]
    04000000 04780960 52800035
    04000000 04780A04 52800008
    04000000 04780A34 7100051F
    04000000 04780A38 1A9F07E8
    04000000 04780A50 54000140
    04000000 04780A54 52800028

    [ForceUncommonFish]
    04000000 04780960 52800035
    04000000 04780A04 52800008
    04000000 04780A34 7100091F
    04000000 04780A38 1A9F07E8
    04000000 04780A50 54000140
    04000000 04780A54 52800048

    [ForceRareFish]
    04000000 04780960 52800035
    04000000 04780A04 52800008
    04000000 04780A34 71000D1F
    04000000 04780A38 1A9F07E8
    04000000 04780A50 54000140
    [--SectionEnd:ForceFishRarity--]
    00000000 00000000 00000000

    [EasyGardening]
    04000000 047631C8 52800020
    04000000 047634D0 D503201F

    [InfHarvesting]
    04000000 0476CB20 D65F03C0
    04000000 0476CE80 D65F03C0

    [InfMiningRock]
    04000000 047B3B88 F8018D1F

    [EasyUnlockCritter]
    04000000 047F50E0 52800020
    04000000 047F571C D503201F

    [PetFriendshipMax(add)]
    04000000 04C739BC 2A1503E1

    [FriendshipMax(add)]
    04000000 04C09824 52A00028
    04000000 04C0982C 729C6CC8

    [XPMax(add)]
    04000000 04D6DC34 52A00148
    04000000 04D6DC38 72824408

    [CurrencyMax(add)]
    04000000 04D711D0 1A89B138
    04000000 04D711D8 1A89B135

    [ClaimAllAchievements]
    04000000 055BF774 D503201F
    04000000 055C31DC B9006668
    04000000 055C31E0 B9009A68
    04000000 055C31E4 14000004

    [--SectionStart:UnlockCodes--]
    00000000 00000000 00000000
    [GetAllMissingClothing]
    04000000 0471A654 D503201F
    04000000 0717107C 9442AD64
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BF63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F4
    04000000 0821C624 96C06497
    04000000 0821C628 972FA26E
    04000000 0821C62C AA0003F3
    04000000 0821C630 9709EEAC
    04000000 0821C634 528000A1
    04000000 0821C638 AA1F03E2
    04000000 0821C63C 9709DE41
    04000000 0821C640 91008015
    04000000 0821C644 B9401816
    04000000 0821C648 52800017
    04000000 0821C64C F8777AA0
    04000000 0821C650 96F42158
    04000000 0821C654 2A0003F8
    04000000 0821C658 AA1303E0
    04000000 0821C65C 2A1803E1
    04000000 0821C660 97183EC8
    04000000 0821C664 370000C0
    04000000 0821C668 AA1403E0
    04000000 0821C66C 2A1803E1
    04000000 0821C670 52800022
    04000000 0821C674 AA1F03E3
    04000000 0821C678 97459B1A
    04000000 0821C67C 110006F7
    04000000 0821C680 6B1602FF
    04000000 0821C684 54FFFE43
    04000000 0821C688 A8C163F7
    04000000 0821C68C A8C15BF5
    04000000 0821C690 A8C153F3
    04000000 0821C694 A8C17BE0
    04000000 0821C698 D65F03C0

    [GetAllMissingMakeup]
    04000000 0471A654 D503201F
    04000000 0717107C 9442AD64
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BF63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F4
    04000000 0821C624 96C06497
    04000000 0821C628 972FA2B6
    04000000 0821C62C AA0003F3
    04000000 0821C630 9709EEAC
    04000000 0821C634 528001C1
    04000000 0821C638 AA1F03E2
    04000000 0821C63C 9709DE41
    04000000 0821C640 91008015
    04000000 0821C644 B9401816
    04000000 0821C648 52800017
    04000000 0821C64C F8777AA0
    04000000 0821C650 96F42158
    04000000 0821C654 2A0003F8
    04000000 0821C658 AA1303E0
    04000000 0821C65C 2A1803E1
    04000000 0821C660 97183EC8
    04000000 0821C664 370000C0
    04000000 0821C668 AA1403E0
    04000000 0821C66C 2A1803E1
    04000000 0821C670 52800022
    04000000 0821C674 AA1F03E3
    04000000 0821C678 97459B1A
    04000000 0821C67C 110006F7
    04000000 0821C680 6B1602FF
    04000000 0821C684 54FFFE43
    04000000 0821C688 A8C163F7
    04000000 0821C68C A8C15BF5
    04000000 0821C690 A8C153F3
    04000000 0821C694 A8C17BE0
    04000000 0821C698 D65F03C0

    [GetAllMissingAvatarFeature]
    04000000 0471A654 D503201F
    04000000 0717107C 9442AD64
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BF63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F4
    04000000 0821C624 96C06497
    04000000 0821C628 972FA38E
    04000000 0821C62C AA0003F3
    04000000 0821C630 9709EEAC
    04000000 0821C634 528000E1
    04000000 0821C638 AA1F03E2
    04000000 0821C63C 9709DE41
    04000000 0821C640 91008015
    04000000 0821C644 B9401816
    04000000 0821C648 52800017
    04000000 0821C64C F8777AA0
    04000000 0821C650 96F42158
    04000000 0821C654 2A0003F8
    04000000 0821C658 AA1303E0
    04000000 0821C65C 2A1803E1
    04000000 0821C660 97183EC8
    04000000 0821C664 370000C0
    04000000 0821C668 AA1403E0
    04000000 0821C66C 2A1803E1
    04000000 0821C670 52800022
    04000000 0821C674 AA1F03E3
    04000000 0821C678 97459B1A
    04000000 0821C67C 110006F7
    04000000 0821C680 6B1602FF
    04000000 0821C684 54FFFE43
    04000000 0821C688 A8C163F7
    04000000 0821C68C A8C15BF5
    04000000 0821C690 A8C153F3
    04000000 0821C694 A8C17BE0
    04000000 0821C698 D65F03C0

    [GetAllMissingTools&Accessories]
    04000000 0471A654 D503201F
    04000000 0717107C 9442AD64
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BF63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F4
    04000000 0821C624 97BBEF0B
    04000000 0821C628 AA0003F3
    04000000 0821C62C 9709EEAD
    04000000 0821C630 52800161
    04000000 0821C634 AA1F03E2
    04000000 0821C638 9709DE42
    04000000 0821C63C 91008015
    04000000 0821C640 B9401816
    04000000 0821C644 52800017
    04000000 0821C648 F8777AA0
    04000000 0821C64C 96F4562D
    04000000 0821C650 2A0003F8
    04000000 0821C654 AA1303E0
    04000000 0821C658 2A1803E1
    04000000 0821C65C 972D56FD
    04000000 0821C660 370000C0
    04000000 0821C664 AA1403E0
    04000000 0821C668 2A1803E1
    04000000 0821C66C 52800022
    04000000 0821C670 AA1F03E3
    04000000 0821C674 97459B1B
    04000000 0821C678 110006F7
    04000000 0821C67C 6B1602FF
    04000000 0821C680 54FFFE43
    04000000 0821C684 A8C163F7
    04000000 0821C688 A8C15BF5
    04000000 0821C68C A8C153F3
    04000000 0821C690 A8C17BE0
    04000000 0821C694 D65F03C0

    [GetAllMissingMotifs]
    04000000 0471A654 D503201F
    04000000 0717107C 9442AD64
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BF63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F4
    04000000 0821C624 96C06497
    04000000 0821C628 972FA322
    04000000 0821C62C AA0003F3
    04000000 0821C630 9709EEAC
    04000000 0821C634 52800141
    04000000 0821C638 AA1F03E2
    04000000 0821C63C 9709DE41
    04000000 0821C640 91008015
    04000000 0821C644 B9401816
    04000000 0821C648 52800017
    04000000 0821C64C F8777AA0
    04000000 0821C650 96F42158
    04000000 0821C654 2A0003F8
    04000000 0821C658 AA1303E0
    04000000 0821C65C 2A1803E1
    04000000 0821C660 97183EC8
    04000000 0821C664 370000C0
    04000000 0821C668 AA1403E0
    04000000 0821C66C 2A1803E1
    04000000 0821C670 52800022
    04000000 0821C674 AA1F03E3
    04000000 0821C678 97459B1A
    04000000 0821C67C 110006F7
    04000000 0821C680 6B1602FF
    04000000 0821C684 54FFFE43
    04000000 0821C688 A8C163F7
    04000000 0821C68C A8C15BF5
    04000000 0821C690 A8C153F3
    04000000 0821C694 A8C17BE0
    04000000 0821C698 D65F03C0

    [GetAllMissingPhotoFrames]
    04000000 0471A654 D503201F
    04000000 0717107C 9442AD64
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BF63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F4
    04000000 0821C624 96C06497
    04000000 0821C628 972FA3B2
    04000000 0821C62C AA0003F3
    04000000 0821C630 9709EEAC
    04000000 0821C634 52800261
    04000000 0821C638 AA1F03E2
    04000000 0821C63C 9709DE41
    04000000 0821C640 91008015
    04000000 0821C644 B9401816
    04000000 0821C648 52800017
    04000000 0821C64C F8777AA0
    04000000 0821C650 96F42158
    04000000 0821C654 2A0003F8
    04000000 0821C658 AA1303E0
    04000000 0821C65C 2A1803E1
    04000000 0821C660 97183EC8
    04000000 0821C664 370000C0
    04000000 0821C668 AA1403E0
    04000000 0821C66C 2A1803E1
    04000000 0821C670 52800022
    04000000 0821C674 AA1F03E3
    04000000 0821C678 97459B1A
    04000000 0821C67C 110006F7
    04000000 0821C680 6B1602FF
    04000000 0821C684 54FFFE43
    04000000 0821C688 A8C163F7
    04000000 0821C68C A8C15BF5
    04000000 0821C690 A8C153F3
    04000000 0821C694 A8C17BE0
    04000000 0821C698 D65F03C0

    [GetAllMissingFurniture]
    04000000 0471A654 D503201F
    04000000 0717107C 9442AD64
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BF63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F4
    04000000 0821C624 96C06497
    04000000 0821C628 972FA24E
    04000000 0821C62C AA0003F3
    04000000 0821C630 9709EEAC
    04000000 0821C634 52800081
    04000000 0821C638 AA1F03E2
    04000000 0821C63C 9709DE41
    04000000 0821C640 91008015
    04000000 0821C644 B9401816
    04000000 0821C648 52800017
    04000000 0821C64C F8777AA0
    04000000 0821C650 96F42158
    04000000 0821C654 2A0003F8
    04000000 0821C658 AA1303E0
    04000000 0821C65C 2A1803E1
    04000000 0821C660 97183EC8
    04000000 0821C664 370000C0
    04000000 0821C668 AA1403E0
    04000000 0821C66C 2A1803E1
    04000000 0821C670 52800C62
    04000000 0821C674 AA1F03E3
    04000000 0821C678 97459B1A
    04000000 0821C67C 110006F7
    04000000 0821C680 6B1602FF
    04000000 0821C684 54FFFE43
    04000000 0821C688 A8C163F7
    04000000 0821C68C A8C15BF5
    04000000 0821C690 A8C153F3
    04000000 0821C694 A8C17BE0
    04000000 0821C698 D65F03C0

    [GetAllMissingWallpaper&Floors]
    04000000 0471A654 D503201F
    04000000 0717107C 9442AD64
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BF63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F4
    04000000 0821C624 96C06497
    04000000 0821C628 972FA2DA
    04000000 0821C62C AA0003F3
    04000000 0821C630 9709EEAC
    04000000 0821C634 52800201
    04000000 0821C638 AA1F03E2
    04000000 0821C63C 9709DE41
    04000000 0821C640 91008015
    04000000 0821C644 B9401816
    04000000 0821C648 52800017
    04000000 0821C64C F8777AA0
    04000000 0821C650 96F42158
    04000000 0821C654 2A0003F8
    04000000 0821C658 AA1303E0
    04000000 0821C65C 2A1803E1
    04000000 0821C660 97183EC8
    04000000 0821C664 370000C0
    04000000 0821C668 AA1403E0
    04000000 0821C66C 2A1803E1
    04000000 0821C670 52800022
    04000000 0821C674 AA1F03E3
    04000000 0821C678 97459B1A
    04000000 0821C67C 110006F7
    04000000 0821C680 6B1602FF
    04000000 0821C684 54FFFE43
    04000000 0821C688 A8C163F7
    04000000 0821C68C A8C15BF5
    04000000 0821C690 A8C153F3
    04000000 0821C694 A8C17BE0
    04000000 0821C698 D65F03C0

    [GetAllMissingPlayerHouses]
    04000000 0471A654 D503201F
    04000000 0717107C 9442AD64
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BE63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F4
    04000000 0821C624 96C06497
    04000000 0821C628 972FA2FE
    04000000 0821C62C AA0003F3
    04000000 0821C630 B000E680
    04000000 0821C634 910B4000
    04000000 0821C638 D5033BBF
    04000000 0821C63C 52800021
    04000000 0821C640 96222C48
    04000000 0821C644 9709EEA7
    04000000 0821C648 52800041
    04000000 0821C64C 528000A8
    04000000 0821C650 B90013E8
    04000000 0821C654 910043E2
    04000000 0821C658 B000E688
    04000000 0821C65C F9416903
    04000000 0821C660 96C35FC4
    04000000 0821C664 91008015
    04000000 0821C668 B9401816
    04000000 0821C66C 52800017
    04000000 0821C670 F8777AA0
    04000000 0821C674 96F4214F
    04000000 0821C678 2A0003F8
    04000000 0821C67C AA1303E0
    04000000 0821C680 2A1803E1
    04000000 0821C684 97183EBF
    04000000 0821C688 370000C0
    04000000 0821C68C AA1403E0
    04000000 0821C690 2A1803E1
    04000000 0821C694 52800022
    04000000 0821C698 AA1F03E3
    04000000 0821C69C 97459B11
    04000000 0821C6A0 110006F7
    04000000 0821C6A4 6B1602FF
    04000000 0821C6A8 54FFFE43
    04000000 0821C6AC A8C263F7
    04000000 0821C6B0 A8C15BF5
    04000000 0821C6B4 A8C153F3
    04000000 0821C6B8 A8C17BE0
    04000000 0821C6BC D65F03C0

    [GetAllMissingFigures]
    04000000 0471A654 D503201F
    04000000 0717107C 9442AD64
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BF63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F4
    04000000 0821C624 96C06497
    04000000 0821C628 972FA36A
    04000000 0821C62C AA0003F3
    04000000 0821C630 9709EEAC
    04000000 0821C634 52800241
    04000000 0821C638 AA1F03E2
    04000000 0821C63C 9709DE41
    04000000 0821C640 91008015
    04000000 0821C644 B9401816
    04000000 0821C648 52800017
    04000000 0821C64C F8777AA0
    04000000 0821C650 96F42158
    04000000 0821C654 2A0003F8
    04000000 0821C658 AA1303E0
    04000000 0821C65C 2A1803E1
    04000000 0821C660 97183EC8
    04000000 0821C664 370000C0
    04000000 0821C668 AA1403E0
    04000000 0821C66C 2A1803E1
    04000000 0821C670 52800022
    04000000 0821C674 AA1F03E3
    04000000 0821C678 97459B1A
    04000000 0821C67C 110006F7
    04000000 0821C680 6B1602FF
    04000000 0821C684 54FFFE43
    04000000 0821C688 A8C163F7
    04000000 0821C68C A8C15BF5
    04000000 0821C690 A8C153F3
    04000000 0821C694 A8C17BE0
    04000000 0821C698 D65F03C0

    [GetAllMissingCompanions]
    04000000 0471A654 D503201F
    04000000 0717107C 9442AD64
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BE63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F4
    04000000 0821C624 97BBEF0B
    04000000 0821C628 AA0003F3
    04000000 0821C62C B000E680
    04000000 0821C630 910DE000
    04000000 0821C634 D5033BBF
    04000000 0821C638 52800021
    04000000 0821C63C 96222C49
    04000000 0821C640 9709EEA8
    04000000 0821C644 52800181
    04000000 0821C648 52800008
    04000000 0821C64C B90013E8
    04000000 0821C650 910043E2
    04000000 0821C654 B000E688
    04000000 0821C658 F941BD03
    04000000 0821C65C 96C35FC5
    04000000 0821C660 91008015
    04000000 0821C664 B9401816
    04000000 0821C668 52800017
    04000000 0821C66C F8777AA0
    04000000 0821C670 96FBB394
    04000000 0821C674 2A0003F8
    04000000 0821C678 AA1303E0
    04000000 0821C67C 2A1803E1
    04000000 0821C680 972D96CC
    04000000 0821C684 B50000C0
    04000000 0821C688 AA1403E0
    04000000 0821C68C 2A1803E1
    04000000 0821C690 52800022
    04000000 0821C694 AA1F03E3
    04000000 0821C698 97459B12
    04000000 0821C69C 110006F7
    04000000 0821C6A0 6B1602FF
    04000000 0821C6A4 54FFFE43
    04000000 0821C6A8 A8C263F7
    04000000 0821C6AC A8C15BF5
    04000000 0821C6B0 A8C153F3
    04000000 0821C6B4 A8C17BE0
    04000000 0821C6B8 D65F03C0

    [GetAllMissingSkins]
    04000000 0471A654 D503201F
    04000000 0717107C 9442AD64
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BF63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F4
    04000000 0821C624 96C06497
    04000000 0821C628 972FA346
    04000000 0821C62C AA0003F3
    04000000 0821C630 9709EEAC
    04000000 0821C634 52800221
    04000000 0821C638 AA1F03E2
    04000000 0821C63C 9709DE41
    04000000 0821C640 91008015
    04000000 0821C644 B9401816
    04000000 0821C648 52800017
    04000000 0821C64C F8777AA0
    04000000 0821C650 96F42158
    04000000 0821C654 2A0003F8
    04000000 0821C658 AA1303E0
    04000000 0821C65C 2A1803E1
    04000000 0821C660 97183EC8
    04000000 0821C664 370000C0
    04000000 0821C668 AA1403E0
    04000000 0821C66C 2A1803E1
    04000000 0821C670 52800022
    04000000 0821C674 AA1F03E3
    04000000 0821C678 97459B1A
    04000000 0821C67C 110006F7
    04000000 0821C680 6B1602FF
    04000000 0821C684 54FFFE43
    04000000 0821C688 A8C163F7
    04000000 0821C68C A8C15BF5
    04000000 0821C690 A8C153F3
    04000000 0821C694 A8C17BE0
    04000000 0821C698 D65F03C0

    [UnlockAllMemories]
    04000000 0471A654 D503201F
    04000000 04716B68 2A1F03E8
    04000000 0717107C 9442AD64
    04000000 04D761A0 17FFFFD3
    04000000 04D7612C 94D29954
    04000000 0821C60C A9BF7BF3
    04000000 0821C610 A9BF53F3
    04000000 0821C614 A9BF5BF5
    04000000 0821C618 A9BF63F7
    04000000 0821C61C 96C06461
    04000000 0821C620 AA0003F3
    04000000 0821C624 9709EEAF
    04000000 0821C628 528001A1
    04000000 0821C62C AA1F03E2
    04000000 0821C630 9709DE44
    04000000 0821C634 91008014
    04000000 0821C638 B9401815
    04000000 0821C63C 52800016
    04000000 0821C640 F8767A80
    04000000 0821C644 B9401817
    04000000 0821C648 AA1303E0
    04000000 0821C64C 2A1703E1
    04000000 0821C650 52800022
    04000000 0821C654 AA1F03E3
    04000000 0821C658 97459B22
    04000000 0821C65C 110006D6
    04000000 0821C660 6B1502DF
    04000000 0821C664 54FFFEE3
    04000000 0821C668 A8C163F7
    04000000 0821C66C A8C15BF5
    04000000 0821C670 A8C153F3
    04000000 0821C674 A8C17BE0
    04000000 0821C678 D65F03C0
    04000000 0821C67C A9BF07E0
    04000000 0821C680 A9BF0FE2
    04000000 0821C684 9709EE97
    04000000 0821C688 AA1503E1
    04000000 0821C68C 9709DAB9
    04000000 0821C690 B9406809
    04000000 0821C694 12800008
    04000000 0821C698 5280040A
    04000000 0821C69C 4B09014A
    04000000 0821C6A0 1ACA2508
    04000000 0821C6A4 A8C10FE2
    04000000 0821C6A8 A8C107E0
    04000000 0821C6AC 172D66A1
    [--SectionEnd:UnlockCodes--]
    00000000 00000000 00000000

    [--SectionStart:FixCodes--]
    00000000 00000000 00000000
    [WelcomeVanellope]
    04000000 03242A10 B4FE3201
    04000000 03242A14 153F6722
    04000000 0821C69C B9402028
    04000000 0821C6A0 7100051F
    04000000 0821C6A4 A9BF7BF3
    04000000 0821C6A8 A9BF57F4
    04000000 0821C6AC A9BF5FF6
    04000000 0821C6B0 A9BF67F8
    04000000 0821C6B4 A9BF6FFA
    04000000 0821C6B8 AA0003F3
    04000000 0821C6BC F9400C28
    04000000 0821C6C0 B9401914
    04000000 0821C6C4 96C08A63
    04000000 0821C6C8 96C0646E
    04000000 0821C6CC F9401800
    04000000 0821C6D0 2A1403E1
    04000000 0821C6D4 AA1F03E2
    04000000 0821C6D8 972E10DA
    04000000 0821C6DC AA0003F4
    04000000 0821C6E0 974C1CD0
    04000000 0821C6E4 F9400C08
    04000000 0821C6E8 F9400908
    04000000 0821C6EC B9401915
    04000000 0821C6F0 F9400909
    04000000 0821C6F4 91008137
    04000000 0821C6F8 52800016
    04000000 0821C6FC 6B1502DF
    04000000 0821C700 5400042A
    04000000 0821C704 F8767AEA
    04000000 0821C708 F9400D4B
    04000000 0821C70C F940096B
    04000000 0821C710 B9401978
    04000000 0821C714 F940096C
    04000000 0821C718 9100819A
    04000000 0821C71C 52800019
    04000000 0821C720 6B18033F
    04000000 0821C724 540002CA
    04000000 0821C728 F8797B40
    04000000 0821C72C B9403001
    04000000 0821C730 7100043F
    04000000 0821C734 54000060
    04000000 0821C738 7100083F
    04000000 0821C73C 540001C1
    04000000 0821C740 F940440D
    04000000 0821C744 B94049A1
    04000000 0821C748 71033C3F
    04000000 0821C74C 540000A0
    04000000 0821C750 7102303F
    04000000 0821C754 54000101
    04000000 0821C758 528001C1
    04000000 0821C75C 14000002
    04000000 0821C760 528001A1
    04000000 0821C764 F94019A3
    04000000 0821C768 AA1403E2
    04000000 0821C76C AA1303E0
    04000000 0821C770 96C09820
    04000000 0821C774 11000739
    04000000 0821C778 17FFFFEA
    04000000 0821C77C 110006D6
    04000000 0821C780 17FFFFDF
    04000000 0821C784 A8C16FFA
    04000000 0821C788 A8C167F8
    04000000 0821C78C A8C15FF6
    04000000 0821C790 A8C157F4
    04000000 0821C794 A8C17BF3
    04000000 0821C798 D65F03C0

    [SellToTrash]
    04000000 048EFC30 D503201F
    04000000 048EFC70 17FFFF9C
    04000000 048F1B58 D503201F
    04000000 048F1BA0 D503201F
    04000000 048F27E4 52800000
    04000000 07270AE8 52800035

    [R SelectToRemove]
    04000000 0471DEB0 D503201F
    04000000 0471F644 D503201F
    04000000 06A943EC F943EB00
    04000000 06A943F0 B940E408
    04000000 06A943F4 35000048
    04000000 06A943F8 9680AECE
    04000000 06A943FC 9001A2C8
    04000000 06A94400 910023E0
    04000000 06A94404 F9478D02
    04000000 07148960 F0016876
    04000000 07148964 F94176C0
    04000000 07148968 B940E408
    04000000 0714896C 34002288
    04000000 07148970 F0019537
    04000000 07148974 3943F6E8
    04000000 07185E68 F94007E3
    04000000 07185E6C AA1403E0
    04000000 07185E70 AA1503E1
    04000000 07185E74 B94007E4
    04000000 07185E78 2A1303E2
    04000000 07185E7C 94000011
    80000080
    04000000 06A943EC 971E84ED
    04000000 06A943F0 B9400BE1
    04000000 06A943F4 529FFFE2
    04000000 06A943F8 72AFFFE2
    04000000 06A943FC AA1F03E3
    04000000 06A94400 97A3BC40
    04000000 06A94404 17FFFF94
    04000000 07148960 9703B390
    04000000 07148964 2A1303E1
    04000000 07148968 52800022
    04000000 0714896C AA1F03E3
    04000000 07148970 9788EAE4
    04000000 07148974 17FFFFDB
    04000000 07185E68 9702BE4E
    04000000 07185E6C B94003E1
    04000000 07185E70 52800022
    04000000 07185E74 AA1F03E3
    04000000 07185E78 9787F5A2
    04000000 07185E7C 14000001
    20000000

    [FixMissionRewards]
    04000000 04E1C2F4 D503201F
    [--SectionEnd:FixCodes--]
    00000000 00000000 00000000

    {MasterCode}
    040E0000 04D7DF5C 6B1302A8
    04000000 04D7B79C 4B170108
    04000000 047D4AEC 97FFFE41
    04000000 047D7DC4 9416557B
    04000000 0599AE60 D10283FF
    04000000 047A2720 D101C3FF
    04000000 04CB3444 39412268
    04000000 04CB4384 39412288
    04000000 04CA84DC 394092C8
    04000000 02FA78A4 F9406800
    04000000 02FA78A8 B40002A0
    04000000 02FA78AC B9402041
    04000000 02FA78B0 AA1F03E2
    04000000 02FA78B4 94001DE3
    04000000 02FA78B8 F9406E60
    04000000 02FA78BC B4000200
    04000000 02FA78C0 AA1F03E1
    04000000 0475F3F8 97C8241E
    04000000 0475F700 9445E734
    04000000 02B7BF40 94B57524
    04000000 047AFDB8 F8018D00
    04000000 04C058E4 B94026E8
    04000000 04C058EC 0B150108
    04000000 04D69CF4 0B180108
    04000000 04D69CF8 F81F03BF
    04000000 04D6D290 1A89B2B8
    04000000 04D6D298 1A89B115
    04000000 03241620 17FFF190
    04000000 03241624 D503201F

    [R MoveSpeed x2]
    04000000 0311EDA0 1E204160
    04000000 0311EDA4 1E204181
    04000000 0311EDA8 1E2041A2
    80000080
    04000000 0311EDA0 1E2B2960
    04000000 0311EDA4 1E2C2981
    04000000 0311EDA8 1E2D29A2
    20000000

    [EnergyNoDecrease]
    040E0000 04D7DF5C 6B1F02A8

    [CurrencyNoDecrease]
    04000000 04D7B79C 4B1F0108

    [FreeCraft]
    04000000 047D4AEC 52800000
    04000000 047D7DC4 52800020

    [CookKeepItems]
    04000000 0599AE60 D65F03C0
    04000000 047A2720 D65F03C0

    [AlwaysCriticalSuccess]
    04000000 04CB3444 52800028
    04000000 04CB4384 52800028

    [AlwaysBurning]
    04000000 04CA84DC 52800028

    [EasyFishing]
    04000000 02FA78A4 F9406660
    04000000 02FA78A8 AA1F03E1
    04000000 02FA78AC 940016A9
    04000000 02FA78B0 F9406660
    04000000 02FA78B4 52800001
    04000000 02FA78B8 AA1F03E2
    04000000 02FA78BC 94001651
    04000000 02FA78C0 1400000C

    [EasyGardening]
    04000000 0475F3F8 52800020
    04000000 0475F700 D503201F

    [InfFruits]
    04000000 02B7BF40 D503201F

    [InfMiningRock]
    04000000 047AFDB8 F8018D1F

    [FriendshipMax(add)]
    04000000 04C058E4 52A00028
    04000000 04C058EC 729C6CC8

    [XPMax(add)]
    04000000 04D69CF4 52A00148
    04000000 04D69CF8 72824408

    [CurrencyMax(add)]
    04000000 04D6D290 1A89B138
    04000000 04D6D298 1A89B135

    [WelcomeVanellope]
    04000000 03241620 B4FE3201
    04000000 03241624 153F5762
    04000000 082173AC B9402028
    04000000 082173B0 7100051F
    04000000 082173B4 A9BF7BF3
    04000000 082173B8 A9BF57F4
    04000000 082173BC A9BF5FF6
    04000000 082173C0 A9BF67F8
    04000000 082173C4 A9BF6FFA
    04000000 082173C8 AA0003F3
    04000000 082173CC F9400C28
    04000000 082173D0 B9401914
    04000000 082173D4 96C09A23
    04000000 082173D8 96C0742E
    04000000 082173DC F9401800
    04000000 082173E0 2A1403E1
    04000000 082173E4 AA1F03E2
    04000000 082173E8 972E15C6
    04000000 082173EC AA0003F4
    04000000 082173F0 974C1F84
    04000000 082173F4 F9400C08
    04000000 082173F8 F9400908
    04000000 082173FC B9401915
    04000000 08217400 F9400909
    04000000 08217404 91008137
    04000000 08217408 52800016
    04000000 0821740C 6B1502DF
    04000000 08217410 5400042A
    04000000 08217414 F8767AEA
    04000000 08217418 F9400D4B
    04000000 0821741C F940096B
    04000000 08217420 B9401978
    04000000 08217424 F940096C
    04000000 08217428 9100819A
    04000000 0821742C 52800019
    04000000 08217430 6B18033F
    04000000 08217434 540002CA
    04000000 08217438 F8797B40
    04000000 0821743C B9403001
    04000000 08217440 7100043F
    04000000 08217444 54000060
    04000000 08217448 7100083F
    04000000 0821744C 540001C1
    04000000 08217450 F940440D
    04000000 08217454 B94049A1
    04000000 08217458 71033C3F
    04000000 0821745C 540000A0
    04000000 08217460 7102303F
    04000000 08217464 54000101
    04000000 08217468 528001C1
    04000000 0821746C 14000002
    04000000 08217470 528001A1
    04000000 08217474 F94019A3
    04000000 08217478 AA1403E2
    04000000 0821747C AA1303E0
    04000000 08217480 96C0A7E0
    04000000 08217484 11000739
    04000000 08217488 17FFFFEA
    04000000 0821748C 110006D6
    04000000 08217490 17FFFFDF
    04000000 08217494 A8C16FFA
    04000000 08217498 A8C167F8
    04000000 0821749C A8C15FF6
    04000000 082174A0 A8C157F4
    04000000 082174A4 A8C17BF3
    04000000 082174A8 D65F03C0

    {MasterCode}
    040E0000 04D3410C 6B1302A8
    04000000 04D319EC 4B170108
    04000000 04799A0C 97FFFE41
    04000000 0479CD04 94161A2F
    04000000 04767640 D10283FF
    04000000 047678B0 D101C3FF
    04000000 04C6B304 39412268
    04000000 04C6C244 39412288
    04000000 04C6039C 394092C8
    04000000 02F9BA04 F9406800
    04000000 02F9BA08 B40002A0
    04000000 02F9BA0C B9402041
    04000000 02F9BA10 AA1F03E2
    04000000 02F9BA14 94001DE3
    04000000 02F9BA18 F9406E60
    04000000 02F9BA1C B4000200
    04000000 02F9BA20 AA1F03E1
    04000000 04724598 97C8CE82
    04000000 047248A0 944584B8
    04000000 0472E154 94455E8B
    04000000 04774E28 F8018D00
    04000000 04BBD864 B94026E8
    04000000 04BBD86C 0B150108
    04000000 04D1FF04 0B180108
    04000000 04D1FF08 F81F03BF
    04000000 04D234A0 1A89B2B8
    04000000 04D234A8 1A89B115
    04000000 03232850 17FFF1A4
    04000000 03232854 D503201F

    [R MoveSpeed x2]
    04000000 03113350 1E204160
    04000000 03113354 1E204181
    04000000 03113358 1E2041A2
    80000080
    04000000 03113350 1E2B2960
    04000000 03113354 1E2C2981
    04000000 03113358 1E2D29A2
    20000000

    [EnergyNoDecrease]
    040E0000 04D3410C 6B1F02A8

    [CurrencyNoDecrease]
    04000000 04D319EC 4B1F0108

    [FreeCraft]
    04000000 04799A0C 52800000
    04000000 0479CD04 52800020

    [CookKeepItems]
    04000000 04767640 D65F03C0
    04000000 047678B0 D65F03C0

    [AlwaysCriticalSuccess]
    04000000 04C6B304 52800028
    04000000 04C6C244 52800028

    [AlwaysBurning]
    04000000 04C6039C 52800028

    [EasyFishing]
    04000000 02F9BA04 F9406660
    04000000 02F9BA08 AA1F03E1
    04000000 02F9BA0C 940016A9
    04000000 02F9BA10 F9406660
    04000000 02F9BA14 52800001
    04000000 02F9BA18 AA1F03E2
    04000000 02F9BA1C 94001651
    04000000 02F9BA20 1400000C

    [EasyGardening]
    04000000 04724598 52800020
    04000000 047248A0 D503201F

    [InfFruits]
    04000000 0472E154 D503201F

    [InfMiningRock]
    04000000 04774E28 F8018D1F

    [FriendshipMax(add)]
    04000000 04BBD864 52A00028
    04000000 04BBD86C 729C6CC8

    [XPMax(add)]
    04000000 04D1FF04 52A00148
    04000000 04D1FF08 72824408

    [CurrencyMax(add)]
    04000000 04D234A0 1A89B138
    04000000 04D234A8 1A89B135

    [WelcomeVanellope]
    04000000 03232850 B4FE3481
    04000000 03232854 153D834C
    04000000 08193584 B9402028
    04000000 08193588 7100051F
    04000000 0819358C 544DCAA1
    04000000 08193590 A9BF7BF3
    04000000 08193594 A9BF57F4
    04000000 08193598 A9BF5FF6
    04000000 0819359C A9BF67F8
    04000000 081935A0 A9BF6FFA
    04000000 081935A4 AA0003F3
    04000000 081935A8 F9400C28
    04000000 081935AC B9401914
    04000000 081935B0 96C26E4C
    04000000 081935B4 96C2487F
    04000000 081935B8 F9401800
    04000000 081935BC 2A1403E1
    04000000 081935C0 AA1F03E2
    04000000 081935C4 972F7F7B
    04000000 081935C8 AA0003F4
    04000000 081935CC 974CE549
    04000000 081935D0 F9400C08
    04000000 081935D4 F9400908
    04000000 081935D8 B9401915
    04000000 081935DC F9400909
    04000000 081935E0 91008137
    04000000 081935E4 52800016
    04000000 081935E8 6B1502DF
    04000000 081935EC 5400042A
    04000000 081935F0 F8767AEA
    04000000 081935F4 F9400D4B
    04000000 081935F8 F940096B
    04000000 081935FC B9401978
    04000000 08193600 F940096C
    04000000 08193604 9100819A
    04000000 08193608 52800019
    04000000 0819360C 6B18033F
    04000000 08193610 540002CA
    04000000 08193614 F8797B40
    04000000 08193618 B9403001
    04000000 0819361C 7100043F
    04000000 08193620 54000060
    04000000 08193624 7100083F
    04000000 08193628 540001C1
    04000000 0819362C F940440D
    04000000 08193630 B94049A1
    04000000 08193634 71033C3F
    04000000 08193638 540000A0
    04000000 0819363C 7102303F
    04000000 08193640 54000101
    04000000 08193644 528001C1
    04000000 08193648 14000002
    04000000 0819364C 528001A1
    04000000 08193650 F94019A3
    04000000 08193654 AA1403E2
    04000000 08193658 AA1303E0
    04000000 0819365C 96C27BF5
    04000000 08193660 11000739
    04000000 08193664 17FFFFEA
    04000000 08193668 110006D6
    04000000 0819366C 17FFFFDF
    04000000 08193670 A8C16FFA
    04000000 08193674 A8C167F8
    04000000 08193678 A8C15FF6
    04000000 0819367C A8C157F4
    04000000 08193680 A8C17BF3
    04000000 08193684 D65F03C0

    {MasterCode}
    040E0000 04C9433C 6B1302A8
    04000000 04C91C1C 4B170108
    04000000 04701D0C 97FFFE41
    04000000 04705004 9415F9FB
    04000000 04C836D0 1A89B2B8
    04000000 04C836D8 1A89B115
    04000000 04C7FFC4 0B180108
    04000000 04C7FFC8 F81F03BF
    04000000 04B11444 B94026E8
    04000000 04B1144C 0B150108

    [R MoveSpeed x2]
    04000000 030EDAD0 1E204160
    04000000 030EDAD4 1E204181
    04000000 030EDAD8 1E2041A2
    80000080
    04000000 030EDAD0 1E2B2960
    04000000 030EDAD4 1E2C2981
    04000000 030EDAD8 1E2D29A2
    20000000

    [EnergyNoDecrease]
    040E0000 04C9433C 6B1F02A8

    [CurrencyNoDecrease]
    04000000 04C91C1C 4B1F0108

    [FreeCraft]
    04000000 04701D0C 52800000
    04000000 04705004 52800020

    [CurrencyMax(add)]
    04000000 04C836D0 1A89B138
    04000000 04C836D8 1A89B135

    [XPMax(add)]
    04000000 04C7FFC4 52A00148
    04000000 04C7FFC8 72824408

    [FriendshipMax(add)]
    04000000 04B11444 52A00028
    04000000 04B1144C 729C6CC8

    {MasterCode}
    040E0000 04C83E7C 6B1302A8
    04000000 04C8175C 4B170108
    04000000 046F181C 97FFFE41
    04000000 046F4B14 9415FA07
    04000000 04C73210 1A89B2B8
    04000000 04C73218 1A89B115
    04000000 04C6FB04 0B180108
    04000000 04C6FB08 F81F03BF
    04000000 04B00F54 B94026E8
    04000000 04B00F5C 0B150108

    [R MoveSpeed x2]
    04000000 030DCAA0 1E204160
    04000000 030DCAA4 1E204181
    04000000 030DCAA8 1E2041A2
    80000080
    04000000 030DCAA0 1E2B2960
    04000000 030DCAA4 1E2C2981
    04000000 030DCAA8 1E2D29A2
    20000000

    [EnergyNoDecrease]
    040E0000 04C83E7C 6B1F02A8

    [CurrencyNoDecrease]
    04000000 04C8175C 4B1F0108

    [FreeCraft]
    04000000 046F181C 52800000
    04000000 046F4B14 52800020

    [CurrencyMax(add)]
    04000000 04C73210 1A89B138
    04000000 04C73218 1A89B135

    [XPMax(add)]
    04000000 04C6FB04 52A00148
    04000000 04C6FB08 72824408

    [FriendshipMax(add)]
    04000000 04B00F54 52A00028
    04000000 04B00F5C 729C6CC8

    {MasterCode}
    040E0000 04C8B5EC 6B1302A8
    04000000 04C88ECC 4B170108
    04000000 046DD06C 97FFFE41
    04000000 046E0364 941669CF
    04000000 04C7A980 1A89B2B8
    04000000 04C7A988 1A89B115
    08000000 04C77274 F81F03BF 0B180108
    04000000 04B086C4 B94026E8
    04000000 04B086CC 0B150108

    [R MoveSpeed x2]
    08000000 030D54F0 1E204181 1E204160
    04000000 030D54F8 1E2041A2
    80000080
    08000000 030D54F0 1E2C2981 1E2B2960
    04000000 030D54F8 1E2D29A2
    20000000

    [EnergyNoDecrease]
    040E0000 04C8B5EC 6B1F02A8

    [CurrencyNoDecrease]
    04000000 04C88ECC 4B1F0108

    [FreeCraft]
    04000000 046DD06C 52800000
    04000000 046E0364 52800020

    [CurrencyMax(add)]
    04000000 04C7A980 1A89B138
    04000000 04C7A988 1A89B135

    [XPMax(add)]
    08000000 04C77274 72824408 52A00148

    [FriendshipMax(add)]
    04000000 04B086C4 52A00028
    04000000 04B086CC 729C6CC8
thank you so much
i just want to ask you about clothes and furniture of wishblossom ranch are available in the cheat or not?
 
thank you so much
i just want to ask you about clothes and furniture of wishblossom ranch are available in the cheat or not?

All DLC data is included in the base game file for this game. You can obtain every in-game item, including DLC items, by using 'GetAll' cheat codes.
Post automatically merged:

Do either of these include premium stuff?
Post automatically merged:


It just seems to crash the game

I've been chipping away at the 'R SelectToRemove' update. Just curious—what are you deleting with this? Most clothes and furniture can be hidden, and they stay hidden across updates. If you delete them, the 'GetAll' cheat just re-adds them after an update, forcing you to delete them again. It seems pointless to force-delete items that can simply be hidden. I'm thinking of creating a cheat code that allows you to select and force-delete only the items that can't be hidden. If you're worried about getting your account restricted for having debug items, I think that's a needless worry. I've actually used multiplayer a few times since then to trade a reasonable number of items with others, and I haven't had any restrictions placed on my account.
Post automatically merged:

Thank you for the report. I tested it myself and confirmed that it crashes. I will investigate the cause and try to fix it.

I apologize, but I have decided to discontinue updates for the 'R SelectToRemove' cheat code. The risk of account restrictions due to possessing debug items is extremely low, and since most items can be hidden, this code is not strictly necessary. On the other hand, updating it requires manual work every time, and considering the frequency of updates, it simply isn't worth the effort. While I personally dislike seeing unnatural icons, I want to reduce the workload of maintaining these cheat codes as much as possible, which led to this decision.
 
Last edited by morarin,
  • Like
Reactions: LoreMarqs
All DLC data is included in the base game file for this game. You can obtain every in-game item, including DLC items, by using 'GetAll' cheat codes.
Post automatically merged:



I've been chipping away at the 'R SelectToRemove' update. Just curious—what are you deleting with this? Most clothes and furniture can be hidden, and they stay hidden across updates. If you delete them, the 'GetAll' cheat just re-adds them after an update, forcing you to delete them again. It seems pointless to force-delete items that can simply be hidden. I'm thinking of creating a cheat code that allows you to select and force-delete only the items that can't be hidden. If you're worried about getting your account restricted for having debug items, I think that's a needless worry. I've actually used multiplayer a few times since then to trade a reasonable number of items with others, and I haven't had any restrictions placed on my account.
Post automatically merged:



I apologize, but I have decided to discontinue updates for the 'R SelectToRemove' cheat code. The risk of account restrictions due to possessing debug items is extremely low, and since most items can be hidden, this code is not strictly necessary. On the other hand, updating it requires manual work every time, and considering the frequency of updates, it simply isn't worth the effort. While I personally dislike seeing unnatural icons, I want to reduce the workload of maintaining these cheat codes as much as possible, which led to this decision.
Aw ok makes sense though. I was trying to remove the test stuff in clothing and I have several weird looking items that say chest stuff but show the balloon family.

Basically it’s like every single internal item from the get all code. Too bad it can’t be asked to ignore internal items. I think I hid it all now. It those balloons are gonna haunt my dreams lol
 
Last edited by ChicagoMel,
  • Like
Reactions: morarin
thank you so much
i just want to ask you about clothes and furniture of wishblossom ranch are available in the cheat or not?
I'm a beginner and I've only recently started in this world of unlocking. I'd like to know how to put these codes on the Switch; they're not in TXT format. How do I convert them?
Post automatically merged:

thank you so much
i just want to ask you about clothes and furniture of wishblossom ranch are available in the cheat or not?
I'm a beginner and I've only recently started in this world of unlocking. I'd like to know how to put these codes on the Switch; they're not in TXT format. How do I convert them?
 
  • Like
Reactions: morarin
Aw ok makes sense though. I was trying to remove the test stuff in clothing and I have several weird looking items that say chest stuff but show the balloon family.

Basically it’s like every single internal item from the get all code. Too bad it can’t be asked to ignore internal items. I think I hid it all now. It those balloons are gonna haunt my dreams lol

Thank you for your understanding. The update coming on the 10th will allow us to sell clothing and furniture at Scrooge's Shop. I am hoping this will make it possible to sell debug items as well. (However, even if I sell them, the 'Get All' code will re-add them with every update, so I think hiding them is still the most efficient method). I wish I could filter them out before they are added, but I was unable to find a specific flag in the item data that marks them as debug exclusives.
Post automatically merged:

I'm a beginner and I've only recently started in this world of unlocking. I'd like to know how to put these codes on the Switch; they're not in TXT format. How do I convert them?
Post automatically merged:


I'm a beginner and I've only recently started in this world of unlocking. I'd like to know how to put these codes on the Switch; they're not in TXT format. How do I convert them?

Please copy and paste the entire cheat code and save it as a text file. You must name this text file using the Build ID that corresponds to your specific version. Then, place this file inside a folder named after the Title ID.

The detailed path for the text file is listed in the first post of this thread, but as an example, here is the path for the current latest version (1.20.2) of Disney Dreamlight Valley:

sd:/atmospshere/contents/0100D39012C1A000/cheats/4CD5D66F34BD11CC.txt




  1. Open the "atmosphere" folder at the root of your Switch's SD card, and then open the "contents" folder.
  2. If you have never used cheats for Disney Dreamlight Valley before, create a new folder named 0100D39012C1A000 inside the "contents" folder.
  3. Inside that folder, create another folder named cheats.
  4. Copy and paste the entire cheat code into a text file and save it as 4CD5D66F34BD11CC.txt. Place this file inside the "cheats" folder you just made.

To update the cheat codes in the future, simply save the text file with the Build ID corresponding to the new version and place it in this same "cheats" folder.

I have explained how to use the cheat codes before, so please refer to the following post as well:

Do you install CFW on your switch? If not, see this.

and change settings for using cheats :
Change the ; dmnt_cheats_enabled_by_default = u8!0x1 line to dmnt_cheats_enabled_by_default = u8!0x0
location of the setting file : /atmosphere/config/system_settings.ini

After that, you also need to install some homebrew apps:
nx-ovlloader
Tesla-Menu
Edizon-Overlay
how to install : download → unpack → place atmosphere or switch folder to your SD
how to use overlay : L + ↓ + R-stick

you need to put cheat file like this:
/atmosphere/contents/<title_id>/cheats/<build_id>.txt
for DLV 1.18.0:
/atmosphere/contents/0100D39012C1A000/cheats/730CED1F08B527E6.txt

View attachment 540814

{MasterCode}
040E0000 04F8C62C 6B1302A8
04000000 04F89D20 A9BA7BFD
04000000 04F89D24 F9000BFB
04000000 04F7EE70 3607F500
04000000 04959BEC 97FFFE41
04000000 0495CEC4 941876A7
04000000 04926B60 D10283FF
04000000 04926DD0 D101C3FF
04000000 04E923A4 39412268
04000000 04E932E4 39412288
04000000 04E8743C 394092C8
04000000 04E7E298 B9401F48
04000000 0304EA34 F9406800
04000000 0304EA38 B40002A0
04000000 0304EA3C B9402041
04000000 0304EA40 AA1F03E2
04000000 0304EA44 94002293
04000000 0304EA48 F9406E60
04000000 0304EA4C B4000200
04000000 0304EA50 AA1F03E1
04000000 04901260 2A0003F5
04000000 04901304 39411108
04000000 04901334 7100051F
04000000 04901338 1A9F17E8
04000000 04901350 54000141
04000000 04901354 52800068
04000000 048E3898 97C6165A
04000000 048E3BA0 94483EB0
04000000 048ED1F0 A9BB7BFD
04000000 048ED550 D101C3FF
04000000 049349E8 F8018D00
04000000 04977430 97D74B28
04000000 04977A6C 5400068B
04000000 04E7A6AC 0B180101
04000000 04F638A0 B9402A78
04000000 04F638A4 0B140316
04000000 04DE4864 B94026E8
04000000 04DE486C 0B150108
04000000 04F77144 0B180108
04000000 04F77148 F81F03BF
04000000 04F7A840 1A89B2B8
04000000 04F7A848 1A89B115
04000000 057D63E8 2A0303F5
04000000 077360D0 1A9F17E0
04000000 0774C814 71000D1F
04000000 0774C818 1A9F17E0
04000000 05373BF0 54000861
04000000 057C9964 5400032D
04000000 057CD3CC 6B08013F
04000000 057CD3D0 540000AA
04000000 057CD3D4 2A1F03E0
04000000 04B449DC 37000140
04000000 04B44A18 54000081
04000000 04B44DD8 B9403108
04000000 04B44EFC B940016B
04000000 073D582C AA1303E0
04000000 04897078 2A1502C8
04000000 04F80930 54FFFA60
04000000 04F808BC 2A180108
04000000 04A74D10 1A9F07E0
04000000 04A74D3C 52800020
04000000 04A76940 3707F380
04000000 04A7884C 36003260
04000000 04A79494 9414042F
04000000 05003A84 36001600
04000000 03342B60 17FFF1BC

[R MoveSpeed x2]
04000000 031F3E0C 1E204140
04000000 031F3E10 1E204161
04000000 031F3E18 1E204182
80000080
04000000 031F3E0C 1E2A2940
04000000 031F3E10 1E2B2961
04000000 031F3E18 1E2C2982
20000000

[EnergyNoDecrease]
040E0000 04F8C62C 6B1F02A8

[CurrencyNoDecrease]
04000000 04F89D20 52800000
04000000 04F89D24 D65F03C0

[R PickupToMax]
04000000 03A68CC0 B94017F5
04000000 03A68D98 4B1602B5
80000080
04000000 03A68CC0 2A1B03F5
04000000 03A68D98 52800015
20000000

[ZL NoConsumeItems]
04000000 03A69200 D10283FF
04000000 03A69204 A9047BFD
04000000 03A69AB0 D10243FF
04000000 03A69AB4 A9037BFD
80000100
04000000 03A69200 52800020
04000000 03A69204 D65F03C0
04000000 03A69AB0 52800020
04000000 03A69AB4 D65F03C0
20000000

[ShowAllCraftingRecipe]
04000000 04F7EE70 D503201F

[FreeCraft]
04000000 04959BEC 52800000
04000000 0495CEC4 52800020

[CookKeepItems]
04000000 04926B60 D65F03C0
04000000 04926DD0 D65F03C0

[AlwaysCriticalSuccess]
04000000 04E923A4 52800028
04000000 04E932E4 52800028

[AlwaysBurning]
04000000 04E8743C 52800028

[AlwaysActivityBonusRewards]
04000000 04E7E298 52807D08

[EasyFishing]
04000000 0304EA34 F9406660
04000000 0304EA38 AA1F03E1
04000000 0304EA3C 94001B59
04000000 0304EA40 F9406660
04000000 0304EA44 52800001
04000000 0304EA48 AA1F03E2
04000000 0304EA4C 94001B01
04000000 0304EA50 1400000C

[--SectionStart:ForceFishRarity--]
00000000 00000000 00000000
[ForceNormalFish]
04000000 04901260 52800035
04000000 04901304 52800008
04000000 04901334 7100051F
04000000 04901338 1A9F07E8
04000000 04901350 54000140
04000000 04901354 52800028

[ForceUncommonFish]
04000000 04901260 52800035
04000000 04901304 52800008
04000000 04901334 7100091F
04000000 04901338 1A9F07E8
04000000 04901350 54000140
04000000 04901354 52800048

[ForceRareFish]
04000000 04901260 52800035
04000000 04901304 52800008
04000000 04901334 71000D1F
04000000 04901338 1A9F07E8
04000000 04901350 54000140
[--SectionEnd:ForceFishRarity--]
00000000 00000000 00000000

[EasyGardening]
04000000 048E3898 52800020
04000000 048E3BA0 D503201F

[InfHarvesting]
04000000 048ED1F0 D65F03C0
04000000 048ED550 D65F03C0

[InfMiningRock]
04000000 049349E8 F8018D1F

[EasyUnlockCritter]
04000000 04977430 52800020
04000000 04977A6C D503201F

[PetFriendshipMax(add)]
04000000 04E7A6AC 2A1503E1

[MountBondMax(add)]
04000000 04F638A0 52A00036
04000000 04F638A4 729C6CD6

[FriendshipMax(add)]
04000000 04DE4864 52A00028
04000000 04DE486C 729C6CC8

[XPMax(add)]
04000000 04F77144 52A00148
04000000 04F77148 72824408

[CurrencyMax(add)]
04000000 04F7A840 1A89B138
04000000 04F7A848 1A89B135

[EasyClaimDuties]
04000000 057D63E8 52800035
04000000 077360D0 52800020
04000000 0774C814 7100111F
04000000 0774C818 1A9F07E0
04000000 05373BF0 D503201F

[ClaimAllAchievements]
04000000 057C9964 D503201F
04000000 057CD3CC B9006668
04000000 057CD3D0 B9009A68
04000000 057CD3D4 14000004

[--SectionStart:EasyScramblecoin--]
00000000 00000000 00000000
[6Points]
04000000 04B449DC 1400000A
04000000 04B44A18 14000004
04000000 04B44DD8 52800008
04000000 04B44EFC 528000CB

[12Points]
04000000 04B449DC 1400000A
04000000 04B44A18 14000004
04000000 04B44DD8 52800008
04000000 04B44EFC 5280018B

[15Points]
04000000 04B449DC 1400000A
04000000 04B44A18 14000004
04000000 04B44DD8 52800008
04000000 04B44EFC 528001EB

[18Points]
04000000 04B449DC 1400000A
04000000 04B44A18 14000004
04000000 04B44DD8 52800008
04000000 04B44EFC 5280024B

[21Points]
04000000 04B449DC 1400000A
04000000 04B44A18 14000004
04000000 04B44DD8 52800008
04000000 04B44EFC 528002AB

[50Points]
04000000 04B449DC 1400000A
04000000 04B44A18 14000004
04000000 04B44DD8 52800008
04000000 04B44EFC 5280064B
[--SectionEnd:EasyScramblecoin--]
00000000 00000000 00000000

[--SectionStart:GetAllCodes--]
00000000 00000000 00000000
[GetAllClothing]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 528000A1
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800022
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0

[GetAllGliders]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 528000E1
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800022
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0

[GetAllFacePaint]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 528001C1
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800022
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0

[GetAllTool&Accessory]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 52800161
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800022
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0

[GetAllFurniture]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF57F4
04000000 084B2394 A9BF5FF6
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 52800081
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A97
04000000 084B23C0 F9405268
04000000 084B23C4 F9401500
04000000 084B23C8 B9401AE1
04000000 084B23CC AA1F03E2
04000000 084B23D0 972B178C
04000000 084B23D4 52807CE2
04000000 084B23D8 6B000042
04000000 084B23DC 540000AD
04000000 084B23E0 AA1303E0
04000000 084B23E4 B9401AE1
04000000 084B23E8 AA1F03E3
04000000 084B23EC 97436D01
04000000 084B23F0 110006D6
04000000 084B23F4 6B1502DF
04000000 084B23F8 54FFFE23
04000000 084B23FC A8C15FF6
04000000 084B2400 A8C157F4
04000000 084B2404 A8C17BF3
04000000 084B2408 AA1303E0
04000000 084B240C D65F03C0

[GetAllWallpaper&Flooring]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 52800201
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800022
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0

[GetAllPlayerHouse]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BE5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 9000EAA0
04000000 084B23A4 91326000
04000000 084B23A8 52800021
04000000 084B23AC 961821C5
04000000 084B23B0 97050704
04000000 084B23B4 52800041
04000000 084B23B8 528000A8
04000000 084B23BC B90013E8
04000000 084B23C0 910043E2
04000000 084B23C4 9000EAA3
04000000 084B23C8 F9464C63
04000000 084B23CC 96BC89E1
04000000 084B23D0 91008014
04000000 084B23D4 B9401815
04000000 084B23D8 52800016
04000000 084B23DC F8767A80
04000000 084B23E0 B9401801
04000000 084B23E4 AA1303E0
04000000 084B23E8 52800022
04000000 084B23EC AA1F03E3
04000000 084B23F0 97436D00
04000000 084B23F4 110006D6
04000000 084B23F8 6B1502DF
04000000 084B23FC 54FFFF03
04000000 084B2400 A8C25BF5
04000000 084B2404 A8C153F3
04000000 084B2408 A8C17BE0
04000000 084B240C D65F03C0

[GetAllCompanion]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BE5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 9000EAA0
04000000 084B23A4 91352000
04000000 084B23A8 52800021
04000000 084B23AC 961821C5
04000000 084B23B0 97050704
04000000 084B23B4 52800181
04000000 084B23B8 52800008
04000000 084B23BC B90013E8
04000000 084B23C0 910043E2
04000000 084B23C4 9000EAA3
04000000 084B23C8 F946A463
04000000 084B23CC 96BC89E1
04000000 084B23D0 91008014
04000000 084B23D4 B9401815
04000000 084B23D8 52800016
04000000 084B23DC F8767A80
04000000 084B23E0 B9401801
04000000 084B23E4 AA1303E0
04000000 084B23E8 52800022
04000000 084B23EC AA1F03E3
04000000 084B23F0 97436D00
04000000 084B23F4 110006D6
04000000 084B23F8 6B1502DF
04000000 084B23FC 54FFFF03
04000000 084B2400 A8C25BF5
04000000 084B2404 A8C153F3
04000000 084B2408 A8C17BE0
04000000 084B240C D65F03C0

[GetAllMount]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BE5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 9000EAA0
04000000 084B23A4 9134C000
04000000 084B23A8 52800021
04000000 084B23AC 961821C5
04000000 084B23B0 97050704
04000000 084B23B4 52800181
04000000 084B23B8 52800068
04000000 084B23BC B90013E8
04000000 084B23C0 910043E2
04000000 084B23C4 9000EAA3
04000000 084B23C8 F9469863
04000000 084B23CC 96BC89E1
04000000 084B23D0 91008014
04000000 084B23D4 B9401815
04000000 084B23D8 52800016
04000000 084B23DC F8767A80
04000000 084B23E0 B9401801
04000000 084B23E4 AA1303E0
04000000 084B23E8 52800022
04000000 084B23EC AA1F03E3
04000000 084B23F0 97436D00
04000000 084B23F4 110006D6
04000000 084B23F8 6B1502DF
04000000 084B23FC 54FFFF03
04000000 084B2400 A8C25BF5
04000000 084B2404 A8C153F3
04000000 084B2408 A8C17BE0
04000000 084B240C D65F03C0

[GetAllMountGear]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 528002A1
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800022
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0

[GetAllSkin]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 52800221
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800022
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0

[GetAllMotif]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 52800141
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800022
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0

[GetAllPhotoFrame]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 52800261
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800022
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0

[GetAllCookingRecipe]
04000000 073D582C 944372D8
04000000 0489AB94 D503201F
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 528019A1
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800022
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0

[GetAllMemory]
04000000 0489AB94 D503201F
04000000 04897078 2A1F03E8
04000000 073D582C 944372D8
04000000 04F80930 17FFFFD3
04000000 04F808BC 94D4C6CD
04000000 084B238C A9BF7BF3
04000000 084B2390 A9BF53F3
04000000 084B2394 A9BF5BF5
04000000 084B2398 96BA0BCA
04000000 084B239C AA0003F3
04000000 084B23A0 97050708
04000000 084B23A4 528001A1
04000000 084B23A8 AA1F03E2
04000000 084B23AC 9704F2ED
04000000 084B23B0 91008014
04000000 084B23B4 B9401815
04000000 084B23B8 52800016
04000000 084B23BC F8767A80
04000000 084B23C0 B9401801
04000000 084B23C4 AA1303E0
04000000 084B23C8 52800022
04000000 084B23CC AA1F03E3
04000000 084B23D0 97436D08
04000000 084B23D4 110006D6
04000000 084B23D8 6B1502DF
04000000 084B23DC 54FFFF03
04000000 084B23E0 A8C15BF5
04000000 084B23E4 A8C153F3
04000000 084B23E8 A8C17BE0
04000000 084B23EC D65F03C0
04000000 084B23F0 A9BF07E0
04000000 084B23F4 A9BF0FE2
04000000 084B23F8 970506F2
04000000 084B23FC AA1503E1
04000000 084B2400 9704F12C
04000000 084B2404 B9406809
04000000 084B2408 12800008
04000000 084B240C 5280040A
04000000 084B2410 4B09014A
04000000 084B2414 1ACA2508
04000000 084B2418 A8C10FE2
04000000 084B241C A8C107E0
04000000 084B2420 172B3928
[--SectionEnd:GetAllCodes--]
00000000 00000000 00000000

[--SectionStart:FixCodes--]
00000000 00000000 00000000
[SellToTrash]
04000000 04A74D10 2A1F03E0
04000000 04A74D3C 2A1F03E0
04000000 04A76940 17FFFF9C
04000000 04A7884C D503201F
04000000 04A79494 52800000

[FixMissionRewards]
04000000 05003A84 D503201F

[WelcomeVanellope]
04000000 03342B60 B4FE3781
04000000 03342B64 1545BE0A
04000000 084B238C B9402028
04000000 084B2390 7100051F
04000000 084B2394 544675E1
04000000 084B2398 A9BF7BF3
04000000 084B239C A9BF57F4
04000000 084B23A0 A9BF5FF6
04000000 084B23A4 A9BF67F8
04000000 084B23A8 A9BF6FFA
04000000 084B23AC AA0003F3
04000000 084B23B0 F9400C28
04000000 084B23B4 B9401914
04000000 084B23B8 96BA33A6
04000000 084B23BC 96BA0BF9
04000000 084B23C0 F9401800
04000000 084B23C4 2A1403E1
04000000 084B23C8 AA1F03E2
04000000 084B23CC 972BE5B1
04000000 084B23D0 AA0003F4
04000000 084B23D4 9749EA83
04000000 084B23D8 F9400C08
04000000 084B23DC F9400908
04000000 084B23E0 B9401915
04000000 084B23E4 F9400909
04000000 084B23E8 91008137
04000000 084B23EC 52800016
04000000 084B23F0 6B1502DF
04000000 084B23F4 5400042A
04000000 084B23F8 F8767AEA
04000000 084B23FC F9400D4B
04000000 084B2400 F940096B
04000000 084B2404 B9401978
04000000 084B2408 F940096C
04000000 084B240C 9100819A
04000000 084B2410 52800019
04000000 084B2414 6B18033F
04000000 084B2418 540002CA
04000000 084B241C F8797B40
04000000 084B2420 B9402801
04000000 084B2424 7100043F
04000000 084B2428 54000060
04000000 084B242C 7100083F
04000000 084B2430 540001C1
04000000 084B2434 F940400D
04000000 084B2438 B94049A1
04000000 084B243C 71033C3F
04000000 084B2440 540000A0
04000000 084B2444 7102303F
04000000 084B2448 54000101
04000000 084B244C 528001C1
04000000 084B2450 14000002
04000000 084B2454 528001A1
04000000 084B2458 F94019A3
04000000 084B245C AA1403E2
04000000 084B2460 AA1303E0
04000000 084B2464 96BA4137
04000000 084B2468 11000739
04000000 084B246C 17FFFFEA
04000000 084B2470 110006D6
04000000 084B2474 17FFFFDF
04000000 084B2478 A8C16FFA
04000000 084B247C A8C167F8
04000000 084B2480 A8C15FF6
04000000 084B2484 A8C157F4
04000000 084B2488 A8C17BF3
04000000 084B248C D65F03C0
[--SectionEnd:FixCodes--]
00000000 00000000 00000000
Post automatically merged:



For System Version 21.0.0, you need to update all HomeBrew applications. For those who, like me, were forced to update to system version 21.0.0, I’d like to share how to use cheat codes with an overlay.
  1. Download and extract EdiZon SE, then move it to your Switch's SD card.
  2. Download and extract Breeze, then move it to your Switch's SD card (overwrite the files from step 1).
  3. Download and extract EdiZon SE (updated), then move it to your Switch's SD card to overwrite (sd:/switch/Edizon).
In my case, it did not work if I skipped these steps (I'm not actually sure which of the three steps are truly necessary or unnecessary).

After that, please download the following three tools:
Basically, it is fine to copy the extracted contents of the downloaded files directly to the root of your Switch's SD card. However, please ensure that .ovl files are placed in sd:/switch/.overlays.
Please note that the default command to use the overlay is different from Tesla-Menu: ZR + ZL + ↓

If you need a more detailed guide, please let me know your System Version and Atmosphere Version.
 
Last edited by morarin,
Thank you for your understanding. The update coming on the 10th will allow us to sell clothing and furniture at Scrooge's Shop. I am hoping this will make it possible to sell debug items as well. (However, even if I sell them, the 'Get All' code will re-add them with every update, so I think hiding them is still the most efficient method). I wish I could filter them out before they are added, but I was unable to find a specific flag in the item data that marks them as debug exclusives.
Post automatically merged:



Please copy and paste the entire cheat code and save it as a text file. You must name this text file using the Build ID that corresponds to your specific version. Then, place this file inside a folder named after the Title ID.

The detailed path for the text file is listed in the first post of this thread, but as an example, here is the path for the current latest version (1.20.2) of Disney Dreamlight Valley:

sd:/atmospshere/contents/0100D39012C1A000/cheats/4CD5D66F34BD11CC.txt




  1. Open the "atmosphere" folder at the root of your Switch's SD card, and then open the "contents" folder.
  2. If you have never used cheats for Disney Dreamlight Valley before, create a new folder named 0100D39012C1A000 inside the "contents" folder.
  3. Inside that folder, create another folder named cheats.
  4. Copy and paste the entire cheat code into a text file and save it as 4CD5D66F34BD11CC.txt. Place this file inside the "cheats" folder you just made.

To update the cheat codes in the future, simply save the text file with the Build ID corresponding to the new version and place it in this same "cheats" folder.

I have explained how to use the cheat codes before, so please refer to the following post as well:





If you need a more detailed guide, please let me know your System Version and Atmosphere Version.
Tanks!!!!
Post automatically merged:

Thank you for your understanding. The update coming on the 10th will allow us to sell clothing and furniture at Scrooge's Shop. I am hoping this will make it possible to sell debug items as well. (However, even if I sell them, the 'Get All' code will re-add them with every update, so I think hiding them is still the most efficient method). I wish I could filter them out before they are added, but I was unable to find a specific flag in the item data that marks them as debug exclusives.
Post automatically merged:



Please copy and paste the entire cheat code and save it as a text file. You must name this text file using the Build ID that corresponds to your specific version. Then, place this file inside a folder named after the Title ID.

The detailed path for the text file is listed in the first post of this thread, but as an example, here is the path for the current latest version (1.20.2) of Disney Dreamlight Valley:

sd:/atmospshere/contents/0100D39012C1A000/cheats/4CD5D66F34BD11CC.txt




  1. Open the "atmosphere" folder at the root of your Switch's SD card, and then open the "contents" folder.
  2. If you have never used cheats for Disney Dreamlight Valley before, create a new folder named 0100D39012C1A000 inside the "contents" folder.
  3. Inside that folder, create another folder named cheats.
  4. Copy and paste the entire cheat code into a text file and save it as 4CD5D66F34BD11CC.txt. Place this file inside the "cheats" folder you just made.

To update the cheat codes in the future, simply save the text file with the Build ID corresponding to the new version and place it in this same "cheats" folder.

I have explained how to use the cheat codes before, so please refer to the following post as well:





If you need a more detailed guide, please let me know your System Version and Atmosphere Version.
thank you very much
Post automatically merged:

Thank you for your understanding. The update coming on the 10th will allow us to sell clothing and furniture at Scrooge's Shop. I am hoping this will make it possible to sell debug items as well. (However, even if I sell them, the 'Get All' code will re-add them with every update, so I think hiding them is still the most efficient method). I wish I could filter them out before they are added, but I was unable to find a specific flag in the item data that marks them as debug exclusives.
Post automatically merged:



Please copy and paste the entire cheat code and save it as a text file. You must name this text file using the Build ID that corresponds to your specific version. Then, place this file inside a folder named after the Title ID.

The detailed path for the text file is listed in the first post of this thread, but as an example, here is the path for the current latest version (1.20.2) of Disney Dreamlight Valley:

sd:/atmospshere/contents/0100D39012C1A000/cheats/4CD5D66F34BD11CC.txt




  1. Open the "atmosphere" folder at the root of your Switch's SD card, and then open the "contents" folder.
  2. If you have never used cheats for Disney Dreamlight Valley before, create a new folder named 0100D39012C1A000 inside the "contents" folder.
  3. Inside that folder, create another folder named cheats.
  4. Copy and paste the entire cheat code into a text file and save it as 4CD5D66F34BD11CC.txt. Place this file inside the "cheats" folder you just made.

To update the cheat codes in the future, simply save the text file with the Build ID corresponding to the new version and place it in this same "cheats" folder.

I have explained how to use the cheat codes before, so please refer to the following post as well:





If you need a more detailed guide, please let me know your System Version and Atmosphere Version.

I entered the cheats on the Switch, they appear as installed, but they don't work in the game. What could be the problem?

I already have Edizon installed; some photos are attached.
Post automatically merged:

Tanks!!!!
Post automatically merged:


thank you very much
Post automatically merged:



I entered the cheats on the Switch, they appear as installed, but they don't work in the game. What could be the problem?

I already have Edizon installed; some photos are attached.
 

Attachments

  • IMG_20251204_115230.jpg
    IMG_20251204_115230.jpg
    1.5 MB · Views: 20
  • IMG_20251204_115143.jpg
    IMG_20251204_115143.jpg
    1.1 MB · Views: 21
  • IMG_20251204_115143.jpg
    IMG_20251204_115143.jpg
    1.1 MB · Views: 22
  • IMG_20251204_115133.jpg
    IMG_20251204_115133.jpg
    1.8 MB · Views: 20
  • IMG_20251204_115040.jpg
    IMG_20251204_115040.jpg
    1.3 MB · Views: 20
Last edited by LoreMarqs,
  • Like
Reactions: morarin
Tanks!!!!
Post automatically merged:


thank you very much
Post automatically merged:



I entered the cheats on the Switch, they appear as installed, but they don't work in the game. What could be the problem?

I already have Edizon installed; some photos are attached.
Post automatically merged:

I have never heard of 'Kefir' before, but I am able to use the cheat overlay without it.

From the image you uploaded, I can see that you are using Atmosphere 1.10.0 and your System Version is 21.0.0 or higher. Based on this, I have put together a 7z file containing the EdiZon Overlay and the cheat codes for DDV 1.20.2.

Please download and unzip the file, then copy the three folders inside (atmosphere, switch, and config) to the root of your Switch's SD card.
 

Attachments

  • Like
Reactions: LoreMarqs
Hey when I use the r to max code then try to load it to the blueprint it says the storage is full and won’t take it

Are you saying that after using R PickupToMax, you tried to craft something at crafting table but failed with an 'Inventory Full' message? Did that error message show up while FreeCraft was enabled then?
 
Are you saying that after using R PickupToMax, you tried to craft something at crafting table but failed with an 'Inventory Full' message? Did that error message show up while FreeCraft was enabled then?
Oh I forgot free craft, might actually try it after cheats update. I don’t think it was on, no. And not the table, the fairy slide repair
 
  • Like
Reactions: morarin

Site & Scene News

Popular threads in this forum