Leisure Suit Larry in the Land of the Lounge Lizards Reloaded

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
lllccc
Posts: 32
Joined: Thu Apr 02, 2015 3:07 pm

Leisure Suit Larry in the Land of the Lounge Lizards Reloaded

Post by lllccc »

hey guys i just wanted to know if anyone can take a look at theses files the files have no extension all im trying to do is extract the image files from them

some have them im not sure if all of them have them ( the images that is)
https://www.mediafire.com/?bekpcoz7wg80j0j
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Leisure Suit Larry in the Land of the Lounge Lizards Reloaded

Post by aluigi »

There is probably an index file somewhere, anyway a scanner is a perfect solution for this case:

Code: Select all

findloc OFFSET binary "\x0cSOL"
math OFFSET - 1
do
    goto OFFSET
    get DUMMY long
    findloc NEXT_OFFSET binary "\x0cSOL" 0 ""
    if NEXT_OFFSET == ""
        get SIZE asize
    else
        math NEXT_OFFSET - 1
        math SIZE = NEXT_OFFSET
    endif
    math SIZE -= OFFSET
    log "" OFFSET SIZE
    math OFFSET = NEXT_OFFSET
while NEXT_OFFSET != ""
lllccc
Posts: 32
Joined: Thu Apr 02, 2015 3:07 pm

Re: Leisure Suit Larry in the Land of the Lounge Lizards Reloaded

Post by lllccc »

thank you so much for this ^_^