Recent content by kanuki

  1. kanuki

    ROM Hack [WIP] Working on my own .bcres/CGFX converter script

    Hi, Seems like the environment that I developed the script in originally was very lenient on me not specifying the byteorder in the to_bytes function. I started to get that same error too now. Its fixed now, so go give it a try again :D
  2. kanuki

    European Citizens Initiative launched against the destruction of videogames, requires one million signatures

    If an old game is less popular, the publisher can probably scale back the servers to a pretty manageable size because of the smaller playerbase than when the game was first launched. Not every game will have ff14 size mmo server at launch, even less decades after release.
  3. kanuki

    Hacking Homebrew [Release] CTRTool v1.0.0

    Awesome news! Thank you so much for maintaining this tool still :D
  4. kanuki

    How can I extract/edit message.bin files?

    Can you provide spme extra detail? What game's files is that message.bin from? .bin is a really common extention used by many file formats. Best way to determine what a file is is by opening it in a hex editor and checking what the magic word is (the first few bytes usually). I hope you succeed...
  5. kanuki

    ROM Hack [WIP] Working on my own .bcres/CGFX converter script

    Hi all! Wanted to quickly show off a little script I've been working on. It's purpose is to convert/dump models, textures, ect. from CGFX files. It doesn't do much else than just spit out intresting information from the file's header, but at least its a start. It might be ready some day (or...
  6. kanuki

    ROM Hack Kid Icarus: Uprising (KIU) PSLB .json converter script release!

    Hi all! I wanted to share a new script that I just finished writing with all of you. This tool is for converting 'PSLB' files that are found in KIU's romfs (might also be present in other 3DS titles, not sure). These files have a .json extention on them, but are not in fact json files, but a...
  7. kanuki

    ROM Hack Kid Icarus: Uprising (KIU) .zrc files successfully cracked open

    Hi, I'm in fact working on a python script that can convert these PSLB files (false json) into proper readable jsons. I'm making good progress, so I'll probably have the script ready quite soon. I can share the script when its done!
  8. kanuki

    ROM Hack Kid Icarus: Uprising (KIU) .zrc files successfully cracked open

    Hi all, I wanted to share my progress on cracking open KIU's .zrc files. After a lot of research, I found out that .zrc files are simply .arc (darc) files that have been compressed with the LZ11 algorithm. Here's a comparison of two files found in KIU's romfs: 0.arc and a0.zrc. Notice how both...
  9. kanuki

    ROM Hack Anyone familiar with .zrc files in Kid Icarus Uprising? Looking for decrypters.

    Bump! I want to know how to access .zrc files properly too. All i've been able to do is peek inside the file with binwalk.
  10. kanuki

    Kid Icarus Uprising false JSON file parsing

    Hi, I'm also interested in modding KIU and specifically cracking open the rom to access the raw assembly code somehow. Any tips on how I could dig deeper into the game's ROM? I've managed to dump the rom using the citra emulator and peeked into the darc files with binwalk, but thats about it. I...