Devil Summoner PSP *.bin script request

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
neonet1
Posts: 2
Joined: Thu Dec 28, 2017 10:20 pm

Devil Summoner PSP *.bin script request

Post by neonet1 »

Hello! I recently took up a project to translate the game Shin Megami Tensei: Devil Summoner for psp. All I need is a way to extract the .bin archives so I can edit the hexadecimals that correspond to the Japanese text. The Shin Megami Tensei fanbase would really appreciate the help! :D

I had posted this in the wrong category last time, my bad
Last edited by neonet1 on Fri Dec 29, 2017 1:27 pm, edited 1 time in total.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Devil Summoner PSP *.bin script request

Post by aluigi »

Code: Select all

get FILES long
for i = 0 < FILES
    get SIZE[i] long
next i
padding 0x10
savepos OFFSET
for i = 0 < FILES
    log "" OFFSET SIZE[i]
    math OFFSET + SIZE[i]
next i
neonet1
Posts: 2
Joined: Thu Dec 28, 2017 10:20 pm

Re: Devil Summoner PSP *.bin script request

Post by neonet1 »

Thank you so much! I'll post on this thread if any other obstacle ever arises