Problem ripping some TID images - Printable Version +- The VG Resource (https://www.vg-resource.com) +-- Forum: The Resources (https://www.vg-resource.com/forum-109.html) +--- Forum: The Spriters Resource (https://www.vg-resource.com/forum-110.html) +---- Forum: Ripping Help (https://www.vg-resource.com/forum-114.html) +---- Thread: Problem ripping some TID images (/thread-30667.html) |
Problem ripping some TID images - NonStop - 02-21-2017 I was ripping a visual novel (Wand of Fortune R) using Scarlet. Everything was OK at first, no problem with sprites and bg, but then all CG events looks like this: Something is wrong with the palette. Anyone knows how to solve the problem? If someone wants to check the raw file, I've uploaded it here. Thank you~! RE: Problem ripping some TID images - puggsoy - 02-21-2017 The colour format for this file uses RGBA, that is to say the alpha is at the end. Scarlet has read it in like ABGR, and it doesn't seem like you can change it. I've written a GFXtract script for it: Code: # Wand of Fortune R TID It's a bit slower than Scarlet, but works fine if you have the patience. RE: Problem ripping some TID images - NonStop - 02-21-2017 (02-21-2017, 09:22 AM)puggsoy Wrote: The colour format for this file uses RGBA, that is to say the alpha is at the end. Scarlet has read it in like ABGR, and it doesn't seem like you can change it. Omg this is awesome Works perfectly fine! Thank you very much!! RE: Problem ripping some TID images - puggsoy - 02-22-2017 Would you actually be able to give me some more of these files, as well as ones that worked? For consistency's sake I'd like to know if it's possible to make my script work for all TID images, not just the ones Scarlet has issues with. RE: Problem ripping some TID images - NonStop - 02-22-2017 Sure! WoFR BG WoFR CG (events) Reine des Fleurs BG (I guess? I don't know what is going on with this game. TID images are different from WoFR though.) Reine des Fleurs CG (events) Reine des Fleurs Event BG Good luck RE: Problem ripping some TID images - puggsoy - 02-23-2017 Thanks a lot! I've updated my script: Code: # Wand of Fortune R and Reine des Fleurs TID format You might not need it, but it's here for anybody interested. It works for the event CG of both games and the BGs from Reine des Fleurs. It doesn't work with the WoFR BGs or RdF Event BGs though; they use DXT encoding which GFXtract doesn't currently support. |