Help to rip Megaman X7 models, texture, animation and etc

Doubts, help and support about QuickBMS and other game research tools
TheUltDark
Posts: 9
Joined: Wed Apr 22, 2020 4:56 pm

Help to rip Megaman X7 models, texture, animation and etc

Post by TheUltDark »

Hello guys today I bring a new problem for you, I found this script that actually can extract things from EMI and ENG/KOR files from megaman x7 from PS2 and PC

Code: Select all

# Megaman X 7 .emi
# script for QuickBMS http://quickbms.aluigi.org

get ENTRYCOUNT long
get BLOCKSIZE long
idstring "MATH_TBL"
math OFFSET = BLOCKSIZE
get FILENAME BASENAME
for i = 0 < ENTRYCOUNT
    get SIZE long
    get BLOCKCOUNT short
    get UNK2 short
    get UNK3 short
    get UNK4 short
    padding 16
    savepos NEXTENTRY
   
    string NAME = FILENAME
    string NAME += "_"
    string NAME += i
    string NAME += "."
    string NAME += UNK4
   
    log NAME OFFSET SIZE
   
    goto OFFSET
    goto SIZE 0 SEEK_CUR
    padding BLOCKSIZE
    savepos OFFSET
   
    goto NEXTENTRY
next i


but just come out this files on this attatched file, what I need now is ... Can someone help me with this files to import then to my blender/3ds max/noesis and help me extract the textures and animations from those EMI, ENG/KOR files as well?