Results 1 to 2 of 2
  1. #1
    Grooguz
    Grooguz is offline
    BanHammer Holder
    Grooguz's Avatar
    Join Date
    2010 May
    Posts
    678
    Thanks Thanks Given 
    152
    Thanks Thanks Received 
    537
    Thanked in
    167 Posts
    Rep Power
    14

    Atlantica Online NDT files decryptor

    With this simple script you can extract the NDT Files from Atlantica Online

    How to:
    Get Python 2.x version
    run script
    Code:
    from Tkinter import *
    from tkFileDialog   import askopenfilename 
    import struct
    
    filename = askopenfilename()
    
    if len(filename) == 0:
        exit()
    
    outputfilename = filename[:-4] + '.txt'
    
    f = open(filename, 'rb')
    buf = f.read()
    f.close()
    
    HEADER_SIZE = 0x18
    
    seed = struct.unpack('<H', buf[12:14])[0]
    
    output = []
    
    for i in xrange(HEADER_SIZE, len(buf)-1):
        v = struct.unpack('<B', buf[i])[0]
        v -= seed
        v = v & 0xFF
        b2 = struct.unpack('<B', buf[i+1])[0]
        x = v ^ b2
        output.append(x)
    
    f = open(outputfilename, 'wb')
    for v in output:
        f.write(struct.pack('B', v)[0])
    f.close()
    exit()
    Note: this script, will EAT the last byte of the file

  2. The Following User Says Thank You to Grooguz For This Useful Post:


  3. #2
    pixellegolas
    pixellegolas is offline
    New member
    Join Date
    2010 Oct
    Posts
    36
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    5
    Thanked in
    4 Posts
    Rep Power
    0
    What is inside those archives?

Similar Threads

  1. [Release] dNPK SoulMaster npk files decryptor/unpacker
    By Dwar in forum Game Files
    Replies: 27
    Last Post: 2019-11-19, 12:22 PM
  2. [Release] encrypted .CSV decryptor
    By ADACH in forum Requiem Bots, Hacks, Cheats
    Replies: 33
    Last Post: 2011-12-15, 04:15 PM
  3. Ragnarok Online 2 VDK Files
    By Darkin in forum Game Files
    Replies: 3
    Last Post: 2010-11-29, 04:11 PM
  4. Atlantica Online
    By drixnak in forum Research Requests
    Replies: 8
    Last Post: 2010-11-29, 04:08 PM
  5. Dragon Ball Online .PAK Files
    By snaity in forum Game Files
    Replies: 6
    Last Post: 2010-11-16, 07:40 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
  •