Results 1 to 3 of 3
  1. #1
    Koopla
    Koopla is offline
    Guest
    Join Date
    2012 Sep
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Is there a way to open/edit the packed TERA sound files?

    Hi

    Was wondering if it's possible to somehow open the TERA sound/music files and maybe even convert them into mp3s or just play/edit/change them and save them for the game to use them. Thanks in advance guys, great community.

  2. #2
    retop
    retop is offline
    Guest
    Join Date
    2012 Dec
    Location
    ny
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Red face

    its simple because files is not encrypted
    here example on python 2.x

    Code:
    import os
    import sys
    name = raw_input('Inter filename: ')
    dir = (name.split('/')[-1]).split('.')[-2]
    data = open(name,'rb').read()
    data = data.split('OggS',1)[1]
    data = 'OggS' + data
    data = data.split('OggS\x00\x02')
    if not os.path.isdir(dir): os.mkdir(dir)
    for i in xrange(len(data)):
    	print data[i][:3].encode('hex'),' - ',data[i][-3:].encode('hex')
    	open('%s/track_%s.ogg'%(dir,i),'wb').write('OggS\x00\x02' + data[i])
    tmp = raw_input('Press ENTER to quit...')
    quit()
    after this you have subdir with files

  3. #3
    terafan
    terafan is offline
    New member
    Join Date
    2013 Feb
    Location
    127.0.0.1
    Posts
    6
    Thanks Thanks Given 
    3
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    Hi. Did it yesterday with Gildor tools.

Similar Threads

  1. Replies: 8
    Last Post: 2015-11-03, 04:46 AM
  2. [max script] open and edit .mdatr files of metin2
    By Baso in forum Game Models and Graphic
    Replies: 2
    Last Post: 2015-06-26, 09:38 PM
  3. [Guide] Open and modified GR2 files in metin2
    By Baso in forum Game Models and Graphic
    Replies: 2
    Last Post: 2013-11-25, 01:14 AM
  4. [Help] Open .nm files
    By seraphielx in forum Requiem Online
    Replies: 5
    Last Post: 2011-03-08, 01:25 AM
  5. Replies: 0
    Last Post: 2010-12-15, 01:40 PM

Posting Permissions

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