Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
-
makc_ar
- Posts: 1193
- Joined: Sun Aug 17, 2014 7:27 pm
Post
by makc_ar »
-
makc_ar
- Posts: 1193
- Joined: Sun Aug 17, 2014 7:27 pm
Post
by makc_ar »
-
aluigi
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Post
by aluigi »
-
makc_ar
- Posts: 1193
- Joined: Sun Aug 17, 2014 7:27 pm
Post
by makc_ar »
Here script by
Falo http://forum.xentax.com/viewtopic.php?p=57953#p57953 for battle folder
Code: Select all
get numFiles long
get unk1 long
get unk2 long
GetDString Name 12
for x = 1 to numFiles
GetDString ext 4
get Offset long
get unk3 byte
get Size THREEBYTE
if Size > 0
set FileName Name
string FileName += "."
string FileName += ext
log FileName Offset Size
endif
next x
Someone fix it to event and menu folder?