Important information: this site is currently scheduled to go offline indefinitely by end of the year.

The *.PAK file format of the Orneon Limited games

The Original Forum. Game archives, full of resources. How to open them? Get help here.
ubrax
advanced
Posts: 46
Joined: Sun Mar 15, 2009 2:16 pm
Has thanked: 20 times

The *.PAK file format of the Orneon Limited games

Post by ubrax »

The contents of this post was deleted because of possible forum rules violation.
Mr.Mouse
Site Admin
Posts: 4073
Joined: Wed Jan 15, 2003 6:45 pm
Location: Dungeons of Doom
Has thanked: 450 times
Been thanked: 682 times
Contact:

Re: The *.PAK file format of the Orneon Limited games

Post by Mr.Mouse »

Rapidshare is awful and banned. So I can't download the game. Is this a trial version of some kind by the way?

Concerning the file, it looks like it is Zlib compressed.
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 664 times
Contact:

Re: The *.PAK file format of the Orneon Limited games

Post by aluigi »

Code: Select all

# script for QuickBMS http://aluigi.org/papers.htm#quickbms

idstring "\xcf\x01"
get ZSIZE short
savepos OFFSET
clog MEMORY_FILE OFFSET ZSIZE 0x10000

get DUMMY byte MEMORY_FILE  # zip?
get FILES short MEMORY_FILE
for i = 0 < FILES
    math OFFSET += ZSIZE
    get NAMESZ byte MEMORY_FILE
    getdstring NAME NAMESZ MEMORY_FILE
    get ZSIZE long MEMORY_FILE
    get SIZE long MEMORY_FILE
    clog NAME OFFSET ZSIZE SIZE
next i
ubrax
advanced
Posts: 46
Joined: Sun Mar 15, 2009 2:16 pm
Has thanked: 20 times

Re: The *.PAK file format of the Orneon Limited games

Post by ubrax »

Thanks Mr.Mouse and aluigi. I appreciate your help. Wish I had your wisdom! have a great weekend.
I can upload the game to one of my sites if you want to downlaod it. Sorry for the rapidshare links, I'll remember not to use it here next time.
regards
warwar
advanced
Posts: 41
Joined: Sat Jun 04, 2011 8:36 am

Re: The *.PAK file format of the Orneon Limited games

Post by warwar »

This bms can unpack the *.PAK file format of the Orneon Limited games ("Echoes of the Past - Royal House of Stone")
But can not unpack the *.PAK file format of the Orneon Limited games ("Secrets of the Dark Temple of Night")
007.jpg
I guess need to revamp
clog MEMORY_FILE OFFSET ZSIZE 0x10000
get DUMMY byte MEMORY_FILE # zip?
Can anyone help me unpack the "Secrets of the Dark Temple of Night",thanks.
The game is http://www.bigfishgames.com/download-ga ... index.html
You do not have the required permissions to view the files attached to this post.
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Re: The *.PAK file format of the Orneon Limited games

Post by chrrox »

stop using rapidshare use mediafire or sendspace.
Bum61e
ultra-n00b
Posts: 2
Joined: Thu Sep 29, 2011 2:51 pm
Has thanked: 1 time

Re: The *.PAK file format of the Orneon Limited games

Post by Bum61e »

aluigi wrote:

Code: Select all

# script for QuickBMS http://aluigi.org/papers.htm#quickbms

idstring "\xcf\x01"
get ZSIZE short
savepos OFFSET
clog MEMORY_FILE OFFSET ZSIZE 0x10000

get DUMMY byte MEMORY_FILE  # zip?
get FILES short MEMORY_FILE
for i = 0 < FILES
    math OFFSET += ZSIZE
    get NAMESZ byte MEMORY_FILE
    getdstring NAME NAMESZ MEMORY_FILE
    get ZSIZE long MEMORY_FILE
    get SIZE long MEMORY_FILE
    clog NAME OFFSET ZSIZE SIZE
next i
Didn't work with data.pak (460Mb) in Echoes of the Past 3 - The Citadels of Time CE:

Image

Please help
bacter
veteran
Posts: 142
Joined: Mon Feb 22, 2010 8:42 pm
Has thanked: 2 times
Been thanked: 83 times

Re: The *.PAK file format of the Orneon Limited games

Post by bacter »

Every file data is encrypted (with a simple XOR encryption), so first need to decrypt before we can decompess it with zlib.
Here are two passwords I found:
"Echoes of the Past 3- The Citadels of Time CE" -> Xor password = 'e34596'
"Secrets of the Dark - Temple of Night CE" -> Xor password = 'tm7224'

If someone finds another problematic Orneon Limited game, just let me know, and I'll try to find the appropriate password for that.

The modified lines for the QuickBMS script:

Code: Select all

    filexor  "0x65 0x33 0x34 0x35 0x39 0x36" OFFSET   # Echoes of the Past 3 - The Citadels of Time CE
    clog NAME OFFSET ZSIZE SIZE
    filexor ""

Or:

    filexor  "0x74 0x6D 0x37 0x32 0x32 0x34" OFFSET   # Secrets of the Dark - Temple of Night CE
    clog NAME OFFSET ZSIZE SIZE
    filexor ""
Bum61e
ultra-n00b
Posts: 2
Joined: Thu Sep 29, 2011 2:51 pm
Has thanked: 1 time

Re: The *.PAK file format of the Orneon Limited games

Post by Bum61e »

Thanks man! :)
bacter
veteran
Posts: 142
Joined: Mon Feb 22, 2010 8:42 pm
Has thanked: 2 times
Been thanked: 83 times

Re: The *.PAK file format of the Orneon Limited games

Post by bacter »

Code: Select all

filexor  "0x65 0x34 0x31 0x33 0x33 0x39" OFFSET   # Echoes of the Past 4 - The Revenge of the Witch
ubrax
advanced
Posts: 46
Joined: Sun Mar 15, 2009 2:16 pm
Has thanked: 20 times

Re: The *.PAK file format of the Orneon Limited games

Post by ubrax »

Thank you Bacter, I appreciate it. :)
bacter
veteran
Posts: 142
Joined: Mon Feb 22, 2010 8:42 pm
Has thanked: 2 times
Been thanked: 83 times

Re: The *.PAK file format of the Orneon Limited games

Post by bacter »

Here's the password for the QuickBMS script:

Code: Select all

    filexor "0x74 0x6D 0x32 0x34 0x38 0x30 0x38" OFFSET   # Secrets of the Dark 2 - Eclipse Mountain CE
    clog NAME OFFSET ZSIZE SIZE
    filexor ""
fordisi
Banned
Posts: 11
Joined: Tue Aug 02, 2011 12:18 pm

Re: The *.PAK file format of the Orneon Limited games

Post by fordisi »

Thank you Bacter! :)
brandiw
ultra-n00b
Posts: 2
Joined: Tue Mar 20, 2012 11:57 am

Re: The *.PAK file format of the Orneon Limited games

Post by brandiw »

bacter wrote:

Code: Select all

filexor  "0x65 0x34 0x31 0x33 0x33 0x39" OFFSET   # Echoes of the Past 4 - The Revenge of the Witch
doesn't work on 4
Last edited by brandiw on Thu Jul 19, 2012 11:21 am, edited 1 time in total.
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 664 times
Contact:

Re: The *.PAK file format of the Orneon Limited games

Post by aluigi »

try with "ufed80c5":

Code: Select all

  filexor  "0x75 0x66 0x65 0x64 0x38 0x30 0x63 0x35" OFFSET
Post Reply