Results 1 to 2 of 2
  1. #1
    Dwar
    Dwar is offline
    Veteran Dwar's Avatar
    Join Date
    2010 Mar
    Posts
    2,222
    Thanks Thanks Given 
    211
    Thanks Thanks Received 
    2,230
    Thanked in
    292 Posts
    Rep Power
    10

    Dragon Nest PAK file structure

    Dragon Nest PAK file structure. Can be used for extracting resources from pkg archives.
    Code:
    //--------------------------------------
    //--- 010 Editor v3.2.1 Binary Template
    //
    // File: Dragon Nest PAK structure
    // Author: Genz&Dwar
    // Revision: 2011-08-21
    // Purpose: Resource extraction, repacking
    //--------------------------------------
    struct PakHeader
    {
        uchar Signature[0x20];
        uint  Null[0x38];
        uint  Unk;                      //0x0B
        uint  FileCount;
        uint  TableOffset <format=hex>;
        uint  Unk2;
        uint  Null2[0xBC];
    } Header;
    
    struct FileHeader
    {
        char FileName[0x100];
        uint SizeDummy      <format=hex>;
        uint OriginalSize   <format=hex>;
        uint CompressedSize <format=hex>;
        uint FileOffset     <format=hex>;
        uint Unknown        <format=hex>;
        uint Null[10];
    };
    
    FSeek(Header.TableOffset);
    FileHeader Files[Header.FileCount];
    Note: just forgot to post it
    Please, post your questions on forum, not by PM or mail

    I spend my time, so please pay a little bit of your time to keep world in equilibrium

  2. #2
    Owesome
    Owesome is offline
    Guest
    Join Date
    2011 Oct
    Location
    Philippines
    Posts
    2
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    I was wondering if you can help me or teach on how to have the bot for dragon nest sea. I'll really appreciate any king of help. Thanks.

Similar Threads

  1. 5 Street Online pcg file structure
    By Dwar in forum Game Files
    Replies: 1
    Last Post: 2014-06-14, 03:17 AM
  2. VDK file structure (Ragnarok Online, Requiem)
    By Dwar in forum Game Files
    Replies: 4
    Last Post: 2014-03-27, 11:17 PM
  3. Dragon Nest MSH structure
    By Grooguz in forum Game Models and Graphic
    Replies: 2
    Last Post: 2012-10-18, 07:46 PM
  4. [Request] Dragon Nest SEA
    By ashH in forum Dragon Nest
    Replies: 28
    Last Post: 2011-12-02, 01:39 AM
  5. SoulMaster NPK file structure
    By Genz in forum Game Files
    Replies: 2
    Last Post: 2010-11-29, 04:07 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •