can you show me how to convert bgb to jpg?If you ever wonder how images are "encrypted" in this game, it is base64 encoded png with windows line ends, so to decrypt stuff run this in bash (either unix or git bash):
if you don't want to play with shell here are images for you:Code:for img in `find -name '*.bgb'`; do sed -e 's/\r//' $img | base64 -d > ${img/.bgb/.png}; done
You must be registered to see the links
CGRip links added to the OP.can you show me how to convert bgb to jpg?
it's in the post, images are base64 encoded, if you don't want to use my script use any other base64 decodercan you show me how to convert bgb to jpg?