About pyro file format
-
- Posts: 39
- Joined: Tue Dec 26, 2017 6:36 am
About pyro file format
Hi,Guys, How can I identify pyro files plz. ,I think it's a picture.
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: About pyro file format
Please specify the name of the game and upload one of these pyro files (is pyro an extension or a game?).
-
- Posts: 39
- Joined: Tue Dec 26, 2017 6:36 am
Re: About pyro file format
aluigi wrote:Please specify the name of the game and upload one of these pyro files (is pyro an extension or a game?).
Yes,an extension.
I forgot the name of the game. I found a Pyro file a long time ago, which could not be opened at that time. Now I want to try if it can be opened!
Upload the test file.
-
- Posts: 40
- Joined: Thu Jan 11, 2018 7:14 am
Re: About pyro file format
Code: Select all
# script for QuickBMS http://quickbms.aluigi.org
# by lisomn
idstring "PYRO\x00"
Endian big
goto 0x15
get count long
for i = 0 < count
Endian big
get name_size long
getdstring tex_name name_size
string tex_name + ".png"
get unkonw long
get unkonw long
get unkonw long
Endian little
get tex_size long
savepos tex_offset
log tex_name tex_offset tex_size
math tex_size + tex_offset
math tex_size + 16
goto tex_size
next i
-
- Posts: 39
- Joined: Tue Dec 26, 2017 6:36 am
Re: About pyro file format
lisomn wrote:Code: Select all
# script for QuickBMS http://quickbms.aluigi.org
# by lisomn
idstring "PYRO\x00"
Endian big
goto 0x15
get count long
for i = 0 < count
Endian big
get name_size long
getdstring tex_name name_size
string tex_name + ".png"
get unkonw long
get unkonw long
get unkonw long
Endian little
get tex_size long
savepos tex_offset
log tex_name tex_offset tex_size
math tex_size + tex_offset
math tex_size + 16
goto tex_size
next i
Thanks,Guys!