Recent content by BelugaDamiens

  1. BelugaDamiens

    Hacking I need info about NDS compression

    I tried to add the CUE source code to my program, but it gives me problems because it uses some deprecated C code and the compiler doesn't want to work with it xD Anyway i would have to do some changes on it for fitting it in my program, so I am finally porting the CUE source to my C++ code...
  2. BelugaDamiens

    Hacking I need info about NDS compression

    Yeah, I did just that... I don't know how i didn't think that before xDDD I've noticed that when I changed the first Byte to 0x10, CUE actually was trying to decode the file, but it didn't do it, because there had to be something wrong there in the file... And... Finally got it!! The thing was...
  3. BelugaDamiens

    Hacking I need info about NDS compression

    Yes, I think that would be strange too... About that magic number which is a 0x10, since the FileTable of the CCB marks the data compression type as 0x10 too, and I noticed that all compressed data blocks starts with a 0x00, I tried to change that byte to a 0x10, but it didn't work, it still...
  4. BelugaDamiens

    Hacking I need info about NDS compression

    I tried to create a separate file with the compressed data (extacted from the whole CBB file), and uncompress it with CUE, but it is not recognized as any LZ compressed file, which is strange because I read that it's the used compression... Could it be because the CCB file is ommiting some...
  5. BelugaDamiens

    Hacking I need info about NDS compression

    Yeah, that 16 is decimal base, from 10h (I really have to change the program output to hex xD). Those files are from CyberConnect, I found their data structure some days ago in a forum which I don't remember rn... But it was so useful for doing the program xD I'll check out those links, and see...
  6. BelugaDamiens

    Hacking I need info about NDS compression

    Hi, I've been trying to unpack a custom file type (.ccb) which is used in a NDS ROM (Solatorobo). Literally almost all the ROM content is inside of that file type. The thing is that I made a little program which reads those files, and give me a list of files contained in them, and their...