Ready to Read with Pooh .pod files
- 
				Puterboy1
- Posts: 382
- Joined: Wed Sep 12, 2018 2:22 am
Ready to Read with Pooh .pod files
Can these be ripped?: https://archive.org/download/ReadyToRea ... S%2FEB.POD
			
			
									
						
										
						- 
				Ekey
- Posts: 1383
- Joined: Sat Aug 09, 2014 2:34 pm
Re: Ready to Read with Pooh .pod files
Code: Select all
# Disney's Ready to Read with Pooh (POD) format
# script for QuickBMS http://quickbms.aluigi.org
idstring "Pod\0"
idstring "file\0\0\0\0"
get FILES long
for i = 0 < FILES
  getdstring NAME 12
  get SIZE long
  putarray 0 i NAME
  putarray 1 i SIZE
next i
savepos OFFSET
for j = 0 < FILES
  getarray NAME 0 j
  getarray SIZE 1 j
  log NAME OFFSET SIZE
  math OFFSET += SIZE
next j