Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

The Great Ace Attorney Chronicles .ARC Files. Help!!

Featured Replies

  • Author
  • Localization

MuslimCyberGames, posted Wed Jul 28, 2021 2:51 pm (65392)


Image

The Great Ace Attorney Chronicles

Hello, anybody. Have a tools for Extract/Import for this game. This game have a ARC file format from CAPCOM.

Thanks.
  • Author
  • Localization

einherjar007, posted Fri Jul 30, 2021 11:50 pm (65423)


looks like a zlib compression.
You can try offzip "-a -1"
  • Author
  • Localization

MuslimCyberGames, posted Sat Jul 31, 2021 9:51 am (65428)


einherjar007 wrote:
looks like a zlib compression.
You can try offzip "-a -1"


I tried and the result is nothing.
  • Author
  • Localization

MuslimCyberGames, posted Wed Aug 04, 2021 2:54 am (65487)


Anyone can help it?
  • Author
  • Localization

lisomn, posted Wed Aug 04, 2021 11:45 am (65502)


Code:
# script for QuickBMS http://quickbms.aluigi.org
# by lisomn
idstring "ARC\x00"
get unk1 short
get file_count short
for i = 0 < file_count
   getdstring file_name 0x80
   get unk1 long
   get zsize long
   get size short
   get u1 byte
   get u2 byte
   get zoffset long
   comtype zlib
   clog file_name zoffset zsize size
next i

owo
  • Author
  • Localization

MuslimCyberGames, posted Fri Aug 06, 2021 11:49 am (65557)


lisomn wrote:
Code:
# script for QuickBMS http://quickbms.aluigi.org
# by lisomn
idstring "ARC\x00"
get unk1 short
get file_count short
for i = 0    getdstring file_name 0x80
   get unk1 long
   get zsize long
   get size short
   get u1 byte
   get u2 byte
   get zoffset long
   comtype zlib
   clog file_name zoffset zsize size
next i

owo


I got some error, for extracting the arc files?

Image
  • Author
  • Localization

MuslimCyberGames, posted Sun Aug 08, 2021 10:21 am (65595)


cih99 wrote:
https://www.gulf-up.com/b8t6d6jje18a
Image


It's not working.
  • Author
  • Localization

masagrator, posted Sat Aug 14, 2021 7:06 pm (65726)


lisomn wrote:
Code:
# script for QuickBMS http://quickbms.aluigi.org
# by lisomn
idstring "ARC\x00"
get unk1 short
get file_count short
for i = 0 < file_count
   getdstring file_name 0x80
   get unk1 long
   get zsize long
   get size short
   get u1 byte
   get u2 byte
   get zoffset long
   comtype zlib
   clog file_name zoffset zsize size
next i

owo

Issue with this script is that "size" is = long - 0x40000000, not short
  • Author
  • Localization

Ekey, posted Sun Aug 15, 2021 10:59 am (65738)


Code:
# The Great Ace Attorney Chronicles (ARC) format
# script for QuickBMS http://quickbms.aluigi.org

idstring "ARC\x00"
get VERSION short #7
get FILES short

for i = 0 < FILES
   getdstring PATH 128
   get EXT_HASH long
   get ZSIZE long
   get SIZE long
   math SIZE &= 0x3FFFFFFF
   get OFFSET long
   
   string NAME p= "%s.X" PATH EXT_HASH
   
   if ZSIZE == SIZE
       log NAME OFFSET SIZE
   else
       clog NAME OFFSET ZSIZE SIZE
   endif
next i
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.