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

Dark arcane the carnnival .cub file help !

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
danny
beginner
Posts: 22
Joined: Mon Apr 11, 2011 11:16 am

Dark arcane the carnnival .cub file help !

Post by danny »

Hi i have a file called game_.cub but, i can not decompress with the code for .cub archives:

filexor 0x96
idstring "cub\0"
get VER string
get FILES long
getdstring DUMMY 0x100
for i = 0 < FILES
getdstring NAME 0x100
get OFFSET long
get SIZE long
log NAME OFFSET SIZE
next i
Last edited by danny on Sat Jan 19, 2013 3:39 am, edited 1 time in total.
Ekey
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 1823
Joined: Wed Mar 31, 2010 6:54 am
Has thanked: 92 times
Been thanked: 1058 times

Re: Dark arcane the carnnival .cub file help !

Post by Ekey »

Files inside archive not xored :)

Code: Select all

idstring "cub\0"
get VER string
get FILES long
getdstring DUMMY 0x100
for i = 0 < FILES
 getdstring NAME 0x100
 get OFFSET long
 get SIZE long
 log NAME OFFSET SIZE
next i
Post Reply