samsonyu wrote:
Axess wrote:
I can't grab the million live's files.
I run script w/ above latest url replaced in script.
The script download manifest file and created many folder under MillionLive\ but no file download after that.
The script end without failure.
How to solve this problem?
Hello,
Maybe I can help.
Trying following these instructions.
1) Create the following folder:
C:\Million\MillionLive
2) Download the manifest zip file using the URL below:
https://drive.google.com/file/d/1cFODXm ... ResSY/view3) Extract the contents of the zip file to C:\Million\MillionLive
4) Download the modified Python script zip file using the URL below:
https://drive.google.com/file/d/1EITGev ... HRKuV/view5) Extract the contents of the zip file to C:\Million
6) Uninstall any existing installation of Python
7) Download Python 3.6.0 using the URL below:
https://www.python.org/ftp/python/3.6.0 ... -3.6.0.exe
Run "python-3.6.0.exe" to install Python 3.6.0 (32-bit)
9) When prompted, specify to install Python to the following folder:
C:\Python36
10) After Python has finished installing, open a Command Prompt window
11) In Command Prompt, type: cd C:\Python36\Scripts
12) In Command Prompt, type: pip install lz4
This will download and install the lz4 module for Python
13) In Command Prompt, type: cd C:\Million
14) In Command Prompt, type: MillionLive1.py
If you performed all the steps correctly, this will run the Python script and download the assets to C:\Million\MillionLive
Did it work?
It work!
Thank you very much!!
Now the remaining problem of mirishita are
- where're model asset.
>> I open suspected folder and found some at /cb
- how to convert it back to model format w/ texture, bone, etc. (Using AssetStudio 0.10.0.52 it can export asset to fbx but not all model bind with texture)
- animation.........
-----
<< Edited >>Problem:
I used
chrrox's script but nothing download....
Using print(BaseException) to debug. it catch exception on
Code:
myArr = lz4.block.decompress(myFile[16:],size)
line.
*Python 3.6 /w lz4 v2.0.2 installed
Solution:
Just import "block" and it solved.
Code:
from lz4 import block
But another problems occur.
1. WinError 10054
-> Doing pool thread got this error.
-> Solution: Don't use pool thread. Slow but it can collect all files w/o overlook.
* Some files are no longer exists, just ignore it. (HTTP 404)
2. Run script again, and it will re-download again
-> Solution suggestion: Save last manifest and check hash
---
Now my problem about deresute is only how to get model and fully use it.
(Body/Head/Bone/Animation/etc.)
Thank you very much.