http://puu.sh/ftmGH.zip
The game clearly runs on Unity, but nothing can read any of the archives correctly.
SpongeBob HeroPants .assets
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: SpongeBob HeroPants .assets
Ah, instead the reS archive is a raw container of RIFF files in sequence.
If you need a script:
If you need a script:
Code: Select all
findloc OFFSET string "RIFF"
do
goto OFFSET
get DUMMY long
findloc NEXT_OFFSET string "RIFF" 0 ""
if NEXT_OFFSET == ""
get SIZE asize
else
math SIZE = NEXT_OFFSET
endif
math SIZE -= OFFSET
log "" OFFSET SIZE
math OFFSET = NEXT_OFFSET
while NEXT_OFFSET != ""
-
- Posts: 265
- Joined: Fri Oct 17, 2014 2:57 am
Re: SpongeBob HeroPants .assets
Using the Unity script just gives me this.
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: SpongeBob HeroPants .assets
Script updated to version 0.1.1.
The problem was just caused by different endianess.
The problem was just caused by different endianess.
-
- Posts: 265
- Joined: Fri Oct 17, 2014 2:57 am
Re: SpongeBob HeroPants .assets
nope, still having the same problem
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: SpongeBob HeroPants .assets
My fault. I re-modified it before the upload.
Now version 0.1.1a
Now version 0.1.1a
-
- Posts: 265
- Joined: Fri Oct 17, 2014 2:57 am
Re: SpongeBob HeroPants .assets
It works now! Thanks.