The rules have been updated, read them now: Rules!
Read or post any tutorial related to file format analysis for modding purposes.
-
azbycx
- n00b
- Posts: 13
- Joined: Mon Apr 09, 2018 6:49 pm
- Has thanked: 7 times
- Been thanked: 2 times
Post
by azbycx » Wed Oct 09, 2019 7:22 pm
chrrox wrote: ↑Mon Oct 07, 2019 10:57 pm
azbycx wrote: ↑Sun Oct 06, 2019 5:45 am
chrrox wrote: ↑Thu Oct 03, 2019 10:25 am
Here is a python download script for 魔法科高校の劣等生 LOST ZERO
The Irregular at Magic High School
unknown.png
thks chrrox.but I find the script can only download the 3D modules assets,and whitout the card image assets in it.can u help me with the images assets urls ?thks
https://photos.app.goo.gl/S19vCsUoM5kiyx6U6
I find there are some characters missing in the photograh,just like the "fumiya"&"ayako"\
and some sub card image like "maya"、"hanzo" ard also not include in it .may i trouble u to check the script out once more?

-
azbycx
- n00b
- Posts: 13
- Joined: Mon Apr 09, 2018 6:49 pm
- Has thanked: 7 times
- Been thanked: 2 times
Post
by azbycx » Wed Oct 09, 2019 7:24 pm
zerotaku5123 wrote: ↑Wed Oct 09, 2019 1:35 am
someone to pass me the assets of
GIRLS UND PANZER GAME AND TOKYO DOLLS PROJECT please!
the two GIRLS UND PANZER GAME mobile game all can be download now ..
-
azbycx
- n00b
- Posts: 13
- Joined: Mon Apr 09, 2018 6:49 pm
- Has thanked: 7 times
- Been thanked: 2 times
Post
by azbycx » Thu Oct 10, 2019 9:52 am
THKS,and can u tell me how to find this url? in fact i have try to capture the network traffic while lunch the app,but i have not seen this file at all
i can only find a encrypted json file in the app data folder
-
einherjar007
- veteran
- Posts: 94
- Joined: Sat Dec 23, 2017 7:56 am
- Has thanked: 105 times
- Been thanked: 15 times
-
Contact:
Post
by einherjar007 » Thu Oct 10, 2019 1:02 pm
here.
Code: Select all
using System;
using System.Text;
using System.Security.Cryptography;
public class Program
{
public static void Main()
{
MD5CryptoServiceProvider md5CryptoServiceProvider = new MD5CryptoServiceProvider();
string[] urllist = {"miyuki0283_l.unity3d1600150520"};
for (int x = 0; x < urllist.Length; x++)
{
string hashname = urllist[x];
byte[] array3 = md5CryptoServiceProvider.ComputeHash(Encoding.Unicode.GetBytes(hashname));
StringBuilder stringBuilder = new StringBuilder();
for (int i = 0; i < array3.Length; i++)
{
stringBuilder.Append(array3[i].ToString("x2"));
}
string text = stringBuilder.ToString();
Console.WriteLine(text);
}
}
}
This is what I created while checking internet samples.
Enter the file name + .unity3d and the corresponding key in urllist and convert it to md5 to get the URL hash of the asset.
Execution requires C# Compiler.
-
azbycx
- n00b
- Posts: 13
- Joined: Mon Apr 09, 2018 6:49 pm
- Has thanked: 7 times
- Been thanked: 2 times
Post
by azbycx » Fri Oct 11, 2019 11:26 am
einherjar007 wrote: ↑Thu Oct 10, 2019 1:02 pm
here.
Code: Select all
using System;
using System.Text;
using System.Security.Cryptography;
public class Program
{
public static void Main()
{
MD5CryptoServiceProvider md5CryptoServiceProvider = new MD5CryptoServiceProvider();
string[] urllist = {"miyuki0283_l.unity3d1600150520"};
for (int x = 0; x < urllist.Length; x++)
{
string hashname = urllist[x];
byte[] array3 = md5CryptoServiceProvider.ComputeHash(Encoding.Unicode.GetBytes(hashname));
StringBuilder stringBuilder = new StringBuilder();
for (int i = 0; i < array3.Length; i++)
{
stringBuilder.Append(array3[i].ToString("x2"));
}
string text = stringBuilder.ToString();
Console.WriteLine(text);
}
}
}
This is what I created while checking internet samples.
Enter the file name + .unity3d and the corresponding key in urllist and convert it to md5 to get the URL hash of the asset.
Execution requires C# Compiler.
thks. I have got all the dl links of the 18040 assets about the game and write them into the txt file:
https://mega.nz/#!h5NGBKqT!yDLP1B1sHsBL ... m4FQecw_F8
-
chrrox
- Moderator
- Posts: 2585
- Joined: Sun May 18, 2008 3:01 pm
- Has thanked: 57 times
- Been thanked: 1329 times
Post
by chrrox » Sat Oct 12, 2019 1:31 am
You do not have the required permissions to view the files attached to this post.
-
zerotaku5123
- beginner
- Posts: 28
- Joined: Tue Aug 06, 2019 1:17 am
Post
by zerotaku5123 » Wed Oct 16, 2019 7:25 am
Hello, help me please, I am looking for the 3D models of some costumes of the game "Project Tokyo dolls", and I read that they are encrypted but I do not have much knowledge of how to decipher them,
The models are these:
PLEASE HELP!!!!!
-
tone
- beginner
- Posts: 35
- Joined: Sun Jul 02, 2017 8:40 pm
- Has thanked: 12 times
Post
by tone » Wed Oct 16, 2019 11:22 am
someone helped grab files from iphone version of star ocean anamnesis, problem is the files are all .bin. can anyone please tell what to do with the .bin files?
-
chrrox
- Moderator
- Posts: 2585
- Joined: Sun May 18, 2008 3:01 pm
- Has thanked: 57 times
- Been thanked: 1329 times
Post
by chrrox » Thu Oct 17, 2019 2:55 am
complete download script for magic HS with file names.
You do not have the required permissions to view the files attached to this post.
-
nekoknight
- ultra-n00b
- Posts: 6
- Joined: Wed Oct 31, 2018 3:27 am
Post
by nekoknight » Sun Nov 03, 2019 6:22 am
I could use some help with locating the asset list for Alice Gear Aegis.
You have the option to do a "full install" of the game. However, some models do not get downloaded. For example the latest frame arms girl. I tried both fiddler and process hacker with no luck.
-
mbugle
- ultra-n00b
- Posts: 3
- Joined: Wed Jan 25, 2012 1:18 am
Post
by mbugle » Mon Nov 25, 2019 3:25 pm
Hi guys, im trying to get models from idolmaster million live, i have downloaded everything using the python script and an old manifest file that was on the forums but whenever i try the script with a new manifest i get no files, i have uploaded the manifest file here:
https://drive.google.com/file/d/1_fT6Yn ... sp=sharing
Is anyone able to help here because im at a dead end
-
SushiiiAnimations
- ultra-n00b
- Posts: 1
- Joined: Mon Dec 02, 2019 12:39 am
Post
by SushiiiAnimations » Mon Dec 02, 2019 12:48 am
Does anyone have the extracted files for the Uta Macross Game? I can't get past the .xab format to port models or motion.