Тема: [Piercing Blow] .mqfex File Struct, Piercing Blow Quests
Показать сообщение отдельно
Непрочитано 20.11.2016, 21:26   #1
Аватар для bola
Пользователь

Автор темы (Топик Стартер) .mqfex File Struct, Piercing Blow Quests

So i'm always requesting help here but never take time to give some piece of my job to comunity, so today i decide to release quest struct file, you can use 010 hex editor to open and read content, or create your own binary reader to your emu.
don't remove credits just, share it for free !!!

Код:
//--------------------------------------
//--- 010 Editor v3.1 Binary Template
//
// File: NormalMedal.mqfex
// Author: Bola
// Revision: 1.0
// Purpose: Open Quest files from Piercing Blow
//--------------------------------------
struct FILE{
    struct HEADER {
    char extension[7];
    int questcount;
    char unknown[20];
    } header <bgcolor=cLtGray>;

    struct QUEST {
    short questid;
    int unknown1;
    int unknown2;
    char unknown3[46];
    short level1;
    short level2;
    short level3;
    short level4;
    
    struct REWARDS {
    int exp_reward;
    int points_reward;
    int item_id_reward;
    int type;
    int quantity;
    char unknown4[132];        
    } rewards[4];
        char unknown5[390];
    } quest[file.header.questcount];
} file;
bola вне форума Ответить с цитированием
Сказали спасибо: