Wildstar Beta - File Explorer menu

User Tag List

Page 7 of 8 FirstFirst ... 345678 LastLast
Results 91 to 105 of 106
  1. #91
    Relgo's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did anyone made any progress on the .m3 models?

    Wildstar Beta - File Explorer
  2. #92
    TaylorMouse's Avatar Member
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nope, I just downloaded the new patch, but it takes a lot of time.
    The m3 files are pretty huge so I haven't found anything yet....


    T.

  3. #93
    TaylorMouse's Avatar Member
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here is a little something I did based on the C# code earlier in the post, it is a Wildstar Tex Viewer, just double click on one of the tex files and when Windows asks which program to use to open the tex file, select this tool. It will open a window with the image in it. Use the next and previous to open the next or previous image in the same folder and you can save the file as a png if you like. It also support zooming in and out using the mouse wheel.

    Have fun !!

    T.
    Attached Files Attached Files

  4. #94
    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)
    Making some progress on the m3 geometry:


    Looking for indices now

  5. #95
    Greyn's Avatar Member
    Reputation
    1
    Join Date
    Jul 2013
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Carbine has probably modified the *.tex files ...
    they look very strange now


  6. #96
    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)
    I cant confirm that, they still look ok in my application.

  7. #97
    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)
    Soon ill release a new update of this tool which will provide more possibilities for exploration.
    Last edited by Cromon; 12-05-2013 at 10:24 AM.

  8. #98
    Greyn's Avatar Member
    Reputation
    1
    Join Date
    Jul 2013
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OMFG thats amazing!

    I can´t wait for it.

  9. #99
    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)
    You always amaze me Cromon. :0

    Any chance for modifying the files, and inserting them back in the archive?

  10. #100
    Velho Barrero's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cromon View Post
    Soon ill release a new update of this tool which will provide more possibilities for exploration, as you can see from the screenshots:
    Great! Fansite owners will enjoy it a lot (like me)! Thumbs up for this project!

  11. #101
    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)

  12. #102
    Greyn's Avatar Member
    Reputation
    1
    Join Date
    Jul 2013
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cromon View Post
    Realy cool thing!

    Do you think you can add a function to export images as png or jpg and tables as xls or something like that?

    Thanks 4 that!

  13. #103
    HarisPilton's Avatar Member
    Reputation
    1
    Join Date
    Nov 2013
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Elandrian View Post
    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
    does anyone have any idea why I can't get this to work?

    I can only open up the .bnk files and extract the .wem files, but it doesn't convert to .ogg

    when I try to use Elandrian's second code it just gives me "unknown chunk type" in the cmd. Any ideas?

  14. #104
    najusash's Avatar Private
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cerath View Post
    here is a new upgraded skilllist from me
    https://docs.google.com/spreadsheet/...BazhZLVE#gid=4

    spellslinger done, charmer and elementalist(sounds rly cool) added will do the other classes till tomorrow


    edit: Esper Done
    edit2: Medic, Stalker Done
    Does anyone know how Cerath was able to put together this skill list? I notice he's banned now which is unfortunate. I was looking forward to doing something similar in terms of putting together a skill list for builds, running a diff on them, and making my own "patch notes."

  15. #105
    recon88's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If anyone stumbles over the english level-up (lvl 1 to 2) voice file, then let me know the number of it please.
    Thanks!

Page 7 of 8 FirstFirst ... 345678 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 09:19 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