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

Pop'n Pop PC/Super Puzzle Bobble PC .una files

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
QuoteDaBot
ultra-n00b
Posts: 1
Joined: Wed Mar 13, 2019 8:31 pm

Pop'n Pop PC/Super Puzzle Bobble PC .una files

Post by QuoteDaBot »

I've been trying to crack open Pop'n Pop's PC port to try and fix the PC port somewhat, and while the PS1 version uses a more standard file layout, the .una files on the PC version have stumped me. Dragon Unpacker and Game Extractor can't make sense of the files, and looking at the .una files in a hex editor, I can see file names. I also noticed the PC version of Super Puzzle Bobble also uses the same, if not a very similar file archive. Can anyone make sense of this?

https://mega.nz/#!5qBFlA6Y!zQplLSMF07Kb ... LxtQQtc3Vs
Acewell
VIP member
VIP member
Posts: 1330
Joined: Wed Nov 05, 2008 12:16 pm
Has thanked: 2710 times
Been thanked: 884 times

Re: Pop'n Pop PC/Super Puzzle Bobble PC .una files

Post by Acewell »

this bms script will extract the files from your una sample. :D

Code: Select all

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

get FOLDER basename
idstring "\x55\x4e\x41\x00\x30\x30\x31\x00"
get FILES long
getdstring ZERO 0x14 
for i = 0 < FILES
    getdstring NAME 0x20
    get OFFSET long
    get SIZE long
    getdstring ZERO 0x8
    string NAME p "%s\%s" FOLDER NAME
    log NAME OFFSET SIZE
next i
i don't know about the files content though. :]
Post Reply