Wildstar Beta - File Explorer menu

Shout-Out

User Tag List

Page 3 of 8 FirstFirst 1234567 ... LastLast
Results 31 to 45 of 106
  1. #31
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @wesq: It has to wait till tomorrow, didnt find the time today.

    @gutterkid: Uploaded what ive found for the .tbl yesterday:
    Client Database (.dtbl) - Wildstar Online Development Wiki

    Wildstar Beta - File Explorer
  2. #32
    j42's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks for all the info so far.

    too bad i don't know jack about reverse engineering model files.
    glad someone does ;D

    cheers

  3. #33
    kogakoga's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any chance we might see a program, tool, or tutorial in the near future for those of us with no idea when it comes to turning the files into something visible or readable?

    keep up the good work ^__^

  4. #34
    Elandrian's Avatar Member
    Reputation
    1
    Join Date
    Feb 2007
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    After a couple hours I was able to get some (not all) of the music into a playable format. Also revealed that the secret dominion race is the Chua. (Confirmed from a English VO track that works)

    Here's a link to some of the music files I put together. They're in .ogg format. I just used VLC to play them.

    Badass Wildstar Tunes.rar | Game Front

  5. #35
    kreioth's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks Elandrian!

  6. #36
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What did you change in order to get them running? I dont really know anything about audio files but they already look like valid WAVE format files to me.

  7. #37
    nutaw's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    May 2013
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @cromon

    Could you help to explain how to compile your results ?

  8. #38
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sure, if youve got a question just ask and ill try to help you!

  9. #39
    nutaw's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    May 2013
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    In fact, i don't know how to use your c++ code to extract/convert data from the games to an understandable results, to a jpg file for texture, and tbld in database for trying to do a map of the game and other extract ... quests etc etc...

  10. #40
    Elandrian's Avatar Member
    Reputation
    1
    Join Date
    Feb 2007
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I made a bat program and to extract the wem files from the bnk files. Then also had a program convert the wem files to listenable ogg files. It worked for some of the files, but not all of them were valid. Here's a step by step.

    Download bnkextr.zip ww2ogg019.zip and revorb.exe
    Extract it to the folder that has the bnk files you want to unload.
    Now make a new text file and name it whatever you want... then copy paste this into it.
    HTML Code:
    for %%a in (*.bnk) do (
    md "%%~na" 2>nul
    move "%%a" "%%~na"
    copy bnkextr.exe %%~na
    copy ww2ogg.exe %%~na
    copy revorb.exe %%~na
    copy packed_codebooks_aoTuV_603.bin %%~na
    cd %%~na
    bnkextr.exe %%a
    del %%a
    ren *.wav *.wem
    
    for %%f in (*.wem) do (
    ww2ogg.exe %%f --pcb packed_codebooks_aoTuV_603.bin
    if exist "%%~nf.ogg" del %%f
    )
    for %%f in (*.ogg) do revorb.exe %%f
    
    del packed_codebooks_aoTuV_603.bin
    del *.exe
    cd ..
    )
    for /f "delims=" %%d in ('dir /s /b /ad ^| sort /r') do rd "%%d"
    That should get most of the wem files out of the bnk, then converts them to ogg and puts them into folders.

    Now for some files that didn't work for me, so I had to just do the convert wem to ogg part.
    So I made a convert.bat using this
    HTML Code:
    for %%f in (*.wem) do ww2ogg.exe %%f --pcb packed_codebooks_aoTuV_603.bin
    pause
    for %%f in (*.ogg) do revorb.exe %%f
    pause
    Then that was able to convert most of the wem's to ogg and let me get some sweet listening in!

    I couldn't add the links or the post wouldn't work

  11. #41
    nutaw's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    May 2013
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've attached the files with a 0.cmd and 1.cmd corresponding to your quote.

    and :
    ww2ogg.exe
    bnkextr.exe
    revorb.exe
    packed_codebooks_aoTuV_603.bin
    Attached Files Attached Files

  12. #42
    Elandrian's Avatar Member
    Reputation
    1
    Join Date
    Feb 2007
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome!

    Thanks for doing it for me. That definitely helps.

  13. #43
    kogakoga's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any chance we can get something like that for the other file types?

  14. #44
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1515
    Join Date
    May 2008
    Posts
    2,433
    Thanks G/R
    81/336
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by clamoune View Post
    In fact, i don't know how to use your c++ code to extract/convert data from the games to an understandable results, to a jpg file for texture, and tbld in database for trying to do a map of the game and other extract ... quests etc etc...
    Lots of reversing and spare time

    Good job Cromon, this game looks really interesting to play with

  15. #45
    nutaw's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    May 2013
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    An exemple could be really useful for understand the basis ... but you're right ! I'm a bit more implicated on OS and Web apps
    Last edited by nutaw; 05-21-2013 at 05:31 PM.

Page 3 of 8 FirstFirst 1234567 ... LastLast

Similar Threads

  1. [Trading] Wildstar Beta Key for EQ:Landmark Explorer Gift Pack
    By xesmin in forum WildStar Buy Sell Trade
    Replies: 1
    Last Post: 02-11-2014, 03:02 PM
  2. [Release] Wildstar Beta - File Explorer
    By Cromon in forum MMO Exploits|Hacks
    Replies: 64
    Last Post: 05-25-2013, 10:16 PM
  3. [Selling] Wildstar Beta
    By jackbri in forum Members Only Accounts And CD Keys Buy Sell
    Replies: 4
    Last Post: 04-21-2013, 11:41 AM
  4. [Selling] Wildstar Beta
    By jackbri in forum General Trading Buy Sell Trade
    Replies: 8
    Last Post: 04-14-2013, 03:04 PM
  5. Can I get on a private server using the beta files?
    By hayes712 in forum World of Warcraft General
    Replies: 1
    Last Post: 08-03-2008, 09:56 PM
All times are GMT -5. The time now is 06:01 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search