Recent content by User154

  1. User154

    Hacking Gaming Hardware Homebrew Tutorial Modded 3DS Errors and Fixes

    Great guide but just a couple of things I would add/amend. If problems are arising from the SD card, roadkil's unstoppable copier is great for backing it up, most people's preffered tool for formatting is guiformat (Might also be worth mentioning the SD card must be formatted as FAT32). Also...
  2. User154

    Hacking Emulation Tutorial Editing Pokemon in Rumble Blast with Citra and Squalr

    When you tried to edit the save file on your PC and transfer it what didn't work? Maybe I can help you get it working, it should be possible. 1770732826 It is really fun to mess around with, and honestly really not that hard to do at all. If you have access to a PC or even an android device I...
  3. User154

    Hacking Emulation Tutorial Editing Pokemon in Rumble Blast with Citra and Squalr

    Yes that is correct, the address for the coins when running on an emulator is 0x08100634 So the code would become this: [Infinite coins] 68100634 00000000 // Conditional check to make sure address is initialized 08100634 00FFFFFF // Set coins to 0xFFFFFF D2000000 00000000 // End conditional...
  4. User154

    Hacking Emulation Tutorial Editing Pokemon in Rumble Blast with Citra and Squalr

    That's really cool that you made a tool to create the cheats a bit more easily! I presume this means you manged to work out the answers to the questions you asked in your previous post? If you want to create cheats for an emulator instead of running on actual hardware it's really simple...
  5. User154

    Hacking Emulation Tutorial Editing Pokemon in Rumble Blast with Citra and Squalr

    Yes this would work fine for the EU region game (Super Pokémon Rumble), you would need Luma installed on your 3DS though. You can either backup the save and make edits using an emulator on PC in the way described in the OP, or you could use the cheats. I have just checked and the addresses are...
  6. User154

    Pokémon Rumble U save editor

    Hello there, what it is exactly that you are having trouble with? Is it locating the 00slot00 folder, or opening the folder with the save editor?
  7. User154

    Kirby Triple Deluxe and Planet Robobot cheats

    Sorry if I have misunderstood your question but if you are wanting to know which part of the code determines the button presses it is the first line of each e.g: DD000000 00000003 DD000000 // Execute block if button(s) are pressed 00000003 // Buttons A + B You can find the values for each...
  8. User154

    Pokémon Rumble U save editor

    Hello, I'm really sorry but I totally nissed your post. That exception would be shown if a pokemon rumble blast save header is detected. Do you mind uploading your save file so I can have a look please?
  9. User154

    Useful videos and tools to help you learn 3ds cheat making

    Citra MMJ fork for Android has a decent memory search function. When running some games values are at slightly different locations to where they would be when running on a 3DS, but it should allow you to narrow down the range of memory that you have to search with gdb, making the search much...
  10. User154

    Hacking Emulation Tutorial Editing Pokemon in Rumble Blast with Citra and Squalr

    I don't currently have access to physical console to test with, but try without the plugin loader enabled. IIRC this game did not play nice with CTRPF plugins. My initial intention when making the cheats was to make a plugin for editing Pokemon but even the plugin template made the game crash
  11. User154

    Hacking Emulation Tutorial Editing Pokemon in Rumble Blast with Citra and Squalr

    0x in front of a number is just a general notation to denote that it is a hexdecimal number. You can just omit that part, so 0x09103748 would become 09103748
  12. User154

    Hacking Emulation Tutorial Editing Pokemon in Rumble Blast with Citra and Squalr

    1: That's quite interesting, it isn't something I have observed, but it's handy to know. In all honesty I haven't actually played this game that much, my endeavors in reverse engineering it have mainly been for the benefit of my son. 2: I can't really comment on this too much from personal...
  13. User154

    Hacking Emulation Tutorial Editing Pokemon in Rumble Blast with Citra and Squalr

    Really glad that it worked for you! Yes that move literally just wipes everything out, I'm not sure where it is used in the game legitimately (If at all). Really finding the values was just a process of trial and error. With a memory searcher it is very easy to find the location of anything...
  14. User154

    Hacking Emulation Tutorial Editing Pokemon in Rumble Blast with Citra and Squalr

    You're welcome if you need any help with it then let me know, I'm just sorry I couldn't be of more help.
  15. User154

    Hacking Emulation Tutorial Editing Pokemon in Rumble Blast with Citra and Squalr

    Hello, I'm really sorry but I don't currently have a physical console to be able to find the addresses for the Japanese version, and the addresses are slightly different when running in an emulator. What you could try is backing up your save then use an emulator and memory editor to edit some...